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.
This commit is contained in:
Kim Alvefur 2022-02-02 18:36:08 +01:00
parent bc15d6424f
commit 70598062e3

View file

@ -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