diff options
author | Patrick Cloke <patrickc@matrix.org> | 2023-11-21 14:35:09 -0500 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2023-12-13 15:14:35 +0000 |
commit | 3c964e513e14f1d45090ef34a45764313abc6c11 (patch) | |
tree | faeb727facaae5a0c5259815f332b2f012b23fb3 | |
parent | Merge remote-tracking branch 'gitlab/clokep/license-license' into new_develop (diff) | |
download | synapse-3c964e513e14f1d45090ef34a45764313abc6c11.tar.xz |
Log the new license during start.
Diffstat (limited to '')
-rw-r--r-- | synapse/config/logger.py | 4 |
1 files changed, 4 insertions, 0 deletions
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__) |