# HG changeset patch # User Kim Alvefur # Date 1643823368 -3600 # Node ID dcad8940f0722df1168425f216fcd5d1020aebe0 # Parent 51930f685c169dfcbecf5657057aa34d64b6318d 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. diff -r 51930f685c16 -r dcad8940f072 core/loggingmanager.lua --- a/core/loggingmanager.lua Wed Feb 02 18:28:28 2022 +0100 +++ b/core/loggingmanager.lua Wed Feb 02 18:36:08 2022 +0100 @@ -227,6 +227,7 @@ 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