prosodyctl: Make log level configurable through PROSODYCTL_LOG_LEVEL (useful for debugging)

This commit is contained in:
Matthew Wild 2018-06-07 11:21:51 +01:00
parent 4682ffbbe9
commit 29ebeb2da4

View file

@ -111,7 +111,7 @@ do
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");