syndicate-rkt/syndicate/bin/syndicate-server-debug.rkt

12 lines
371 B
Racket

;;; SPDX-License-Identifier: LGPL-3.0-or-later
;;; SPDX-FileCopyrightText: Copyright © 2018-2022 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
#lang racket
(module+ main
(require racket/logging)
(with-logging-to-port (current-error-port)
(lambda ()
(dynamic-require '(submod syndicate/distributed/tcp-server main) #f))
'debug 'syndicate/relay
))