0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-12 15:48:56 +02:00

Log the new license during start.

This commit is contained in:
Patrick Cloke 2023-11-21 14:35:09 -05:00 committed by Erik Johnston
parent eaad9bb156
commit 3c964e513e

View file

@ -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__)