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

12 lines
371 B
Racket
Raw Normal View History

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