diff --git a/src/test/cout-sink.h b/src/test/cout-sink.h index 73570b4..bd69dcb 100644 --- a/src/test/cout-sink.h +++ b/src/test/cout-sink.h @@ -11,7 +11,7 @@ class ConOutSink : public ILogSink public: virtual void receiveLog(LogType type, std::string_view loggerName, std::string_view msg) override { - std::cout << "[" << loggerName << "] " << seallib::getLogTypeColor(type) << "[" + std::cout << "[" << loggerName << "] " << seallib::getLogTypeColor(type) << "[" << seallib::getLogTypeName(type) << "]" << "\x1b[0m " << msg << std::endl; }