feat(Logger): Remove awful indent

This commit is contained in:
Yimura 2022-06-23 01:03:46 +02:00
parent cc566122e3
commit 133b6dd98e
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -178,7 +178,7 @@ namespace big
out
<< "[" << msg.timestamp("%H:%M:%S") << "]"
<< AddColorToStream(color)
<< "[" << std::setw(7) << msg.level() << "/"
<< "[" << msg.level() << "/"
<< msg.file() << ":" << msg.line() << "]"
<< ResetStreamColor
<< ": ";
@ -192,7 +192,7 @@ namespace big
out
<< "[" << msg.timestamp("%H:%M:%S") << "]"
<< "[" << std::setw(7) << msg.level() << "/"
<< "[" << msg.level() << "/"
<< msg.file() << ":" << msg.line() << "]"
<< ": ";