Changeset

8881:a0de4fc4acd5

prosodyctl: Make log level configurable through PROSODYCTL_LOG_LEVEL (useful for debugging)
author Matthew Wild <mwild1@gmail.com>
date Thu, 07 Jun 2018 11:21:51 +0100
parents 8880:9e565d0b1771
children 8882:a420b386a72a 8886:9aa35cb939ac
files prosodyctl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/prosodyctl	Thu May 31 10:58:00 2018 +0100
+++ b/prosodyctl	Thu Jun 07 11:21:51 2018 +0100
@@ -111,7 +111,7 @@
 	end
 end
 local original_logging_config = config.get("*", "log");
-config.set("*", "log", { { levels = { min="info" }, to = "console" } });
+config.set("*", "log", { { levels = { min = os.getenv("PROSODYCTL_LOG_LEVEL") or "info" }, to = "console" } });
 
 local data_path = config.get("*", "data_path") or CFG_DATADIR or "data";
 local custom_plugin_paths = config.get("*", "plugin_paths");