From 3c964e513e14f1d45090ef34a45764313abc6c11 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Tue, 21 Nov 2023 14:35:09 -0500 Subject: [PATCH] Log the new license during start. --- synapse/config/logger.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/synapse/config/logger.py b/synapse/config/logger.py index 0de6b8bf09..48fdfdd8ea 100644 --- a/synapse/config/logger.py +++ b/synapse/config/logger.py @@ -356,6 +356,10 @@ def setup_logging( sys.argv[0], SYNAPSE_VERSION, ) + logging.warning("Copyright (c) 2023 New Vector, Inc") + logging.warning( + "Licensed under the AGPL 3.0 license. Website: https://github.com/vector-im/synapse" + ) logging.info("Server hostname: %s", config.server.server_name) logging.info("Instance name: %s", hs.get_instance_name()) logging.info("Twisted reactor: %s", type(reactor).__name__)