From cd1146d0d8566c1daf2c5827e4df8e14befe790b Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 19 Jun 2026 07:55:20 -0300 Subject: [PATCH] style: run format-code --- src/test/cout-sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }