aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-02-02 18:36:08 +0100
committerKim Alvefur <zash@zash.se>2022-02-02 18:36:08 +0100
commit70598062e3231d1a4c441d70b6c7ea617f297f3a (patch)
treeb76e34f996748bee09c4d886bfa716ac8b7b2bb5 /core
parentbc15d6424ff9cddc90b60d72fd9a32b9be45684d (diff)
downloadprosody-70598062e3231d1a4c441d70b6c7ea617f297f3a.tar.gz
prosody-70598062e3231d1a4c441d70b6c7ea617f297f3a.zip
core.loggingmanager: Add FIXME about supporting console logging to stderr
Currently it is hard codded to be a specialized stdout logger, which should be fixed one day.
Diffstat (limited to 'core')
-rw-r--r--core/loggingmanager.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index d8e557f9..5da77354 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -227,6 +227,7 @@ end
local function log_to_console(sink_config)
-- Really if we don't want pretty colours then just use plain stdout
+ -- FIXME refactor to allow console logging with colours on stderr
if not do_pretty_printing then
return log_to_stdout(sink_config);
end