Skip to content

Commit 194559e

Browse files
committed
Update Log.cpp
1 parent d051127 commit 194559e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vrs/oss/logging/Log.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace vrs {
2929
namespace logging {
3030

3131
void log(Level level, const char* channel, const std::string& message) {
32-
const fmt::color kNoColor = static_cast<fmt::color>(0xFFFFFFFF);
32+
/*const fmt::color kNoColor = static_cast<fmt::color>(0xFFFFFFFF);
3333
fmt::color c = kNoColor;
3434
const char* logLevel = "";
3535
switch (level) {
@@ -56,7 +56,7 @@ void log(Level level, const char* channel, const std::string& message) {
5656
fmt::print(stderr, fg(c), "[{}][{}]: {}\x1b[0m\n", channel, logLevel, message);
5757
} else {
5858
fmt::print(stderr, "[{}][{}]: {}\n", channel, logLevel, message);
59-
}
59+
}*/
6060
}
6161

6262
void log_every_n_seconds(

0 commit comments

Comments
 (0)