From 540e07e3ef07de760100c2948dc3a756e48b1c72 Mon Sep 17 00:00:00 2001 From: you Date: Sun, 4 Mar 2018 17:34:36 +0100 Subject: Fix missing warningstream (or similar problem) (#7034) Use the --color command line parameter instead of a setting for coloured logs This fixes the missing warningstream bug, g_settings->get mustn't be used there. Also, the decision about en- or disabling log colours fits better to the command line parameters than minetest settings. --- src/log.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/log.cpp') diff --git a/src/log.cpp b/src/log.cpp index 3e9229e38..c84a847a5 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -251,6 +251,8 @@ const std::string Logger::getLevelLabel(LogLevel lev) return names[lev]; } +LogColor Logger::color_mode = LOG_COLOR_AUTO; + const std::string Logger::getThreadName() { std::map::const_iterator it; -- cgit v1.2.3