summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-12-06 18:50:39 +0100
committerSmallJoker <SmallJoker@users.noreply.github.com>2017-12-06 18:50:39 +0100
commite049405fdc688a4d619f3ae88008bbe5ee85b569 (patch)
tree12acb7536beb3d40c69f420d1ec649d33bba6790 /src/log.h
parent4edf08709010f721b099dfae3cab011acbdfb3ff (diff)
downloadminetest-e049405fdc688a4d619f3ae88008bbe5ee85b569.tar.gz
minetest-e049405fdc688a4d619f3ae88008bbe5ee85b569.tar.bz2
minetest-e049405fdc688a4d619f3ae88008bbe5ee85b569.zip
Add coloured logs (#4549)
The setting log_colour can be used to en-/disable or autodetect it.
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
index 6a1c24dec..506137739 100644
--- a/src/log.h
+++ b/src/log.h
@@ -25,6 +25,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <fstream>
#include <thread>
#include <mutex>
+#if !defined(_WIN32) // POSIX
+ #include <unistd.h>
+#endif
+#include "settings.h"
#include "irrlichttypes.h"
class ILogOutput;
@@ -106,15 +110,51 @@ public:
StreamLogOutput(std::ostream &stream) :
m_stream(stream)
{
+#if !defined(_WIN32)
+ is_tty = isatty(fileno(stdout));
+#else
+ is_tty = false;
+#endif
}
void logRaw(LogLevel lev, const std::string &line)
{
+ static const std::string use_logcolor = g_settings->get("log_color");
+
+ bool colored = use_logcolor == "detect" ? is_tty : use_logcolor == "yes";
+ if (colored)
+ switch (lev) {
+ case LL_ERROR:
+ // error is red
+ m_stream << "\033[91m";
+ break;
+ case LL_WARNING:
+ // warning is yellow
+ m_stream << "\033[93m";
+ break;
+ case LL_INFO:
+ // info is a bit dark
+ m_stream << "\033[37m";
+ break;
+ case LL_VERBOSE:
+ // verbose is darker than info
+ m_stream << "\033[2m";
+ break;
+ default:
+ // action is white
+ colored = false;
+ }
+
m_stream << line << std::endl;
+
+ if (colored)
+ // reset to white color
+ m_stream << "\033[0m";
}
private:
std::ostream &m_stream;
+ bool is_tty;
};
class FileLogOutput : public ICombinedLogOutput {