Skip to content

Commit

Permalink
feat(liblogger): set loglevel to off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
hparzych committed Oct 5, 2023
1 parent 234c023 commit d0db18b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liblogging/src/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void Logger::setLogger(spdlog::logger logger) {
}

void Logger::loggerSetDefaults() {
spdLogger.set_level(spdlog::level::info);
spdLogger.set_level(spdlog::level::off);
spdLogger.set_pattern("%Y-%m-%d %H:%M:%S.%e [%t] %^%l%$ [%n] %v");
}

Expand Down

0 comments on commit d0db18b

Please sign in to comment.