From 8dbf62fada36f11a915cea4b6445f716e931dea3 Mon Sep 17 00:00:00 2001
From: Patrick Cloke <clokep@users.noreply.github.com>
Date: Wed, 7 Oct 2020 11:13:38 -0400
Subject: [PATCH] Include the configured log level in phone home stats. (#8477)

By reporting the log level of the synapse logger as a string.
---
 changelog.d/8477.misc           | 1 +
 synapse/app/phone_stats_home.py | 7 +++++++
 2 files changed, 8 insertions(+)
 create mode 100644 changelog.d/8477.misc

diff --git a/changelog.d/8477.misc b/changelog.d/8477.misc
new file mode 100644
index 0000000000..2ee1606b6e
--- /dev/null
+++ b/changelog.d/8477.misc
@@ -0,0 +1 @@
+Include the log level in the phone home stats.
diff --git a/synapse/app/phone_stats_home.py b/synapse/app/phone_stats_home.py
index 2c8e14a8c0..daed8ccfe9 100644
--- a/synapse/app/phone_stats_home.py
+++ b/synapse/app/phone_stats_home.py
@@ -113,6 +113,13 @@ async def phone_stats_home(hs, stats, stats_process=_stats_process):
     stats["database_engine"] = hs.get_datastore().db_pool.engine.module.__name__
     stats["database_server_version"] = hs.get_datastore().db_pool.engine.server_version
 
+    #
+    # Logging configuration
+    #
+    synapse_logger = logging.getLogger("synapse")
+    log_level = synapse_logger.getEffectiveLevel()
+    stats["log_level"] = logging.getLevelName(log_level)
+
     logger.info("Reporting stats to %s: %s" % (hs.config.report_stats_endpoint, stats))
     try:
         await hs.get_proxied_http_client().put_json(
-- 
GitLab