style: run format-code

This commit is contained in:
2026-06-19 07:55:20 -03:00
parent dad8cb55d7
commit cd1146d0d8
+1 -1
View File
@@ -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;
}