Commit b5745dcd authored by Dominik Charousset's avatar Dominik Charousset

Fix verbosity level with disabled console output

parent 58986b85
...@@ -388,6 +388,7 @@ void logger::init(actor_system_config& cfg) { ...@@ -388,6 +388,7 @@ void logger::init(actor_system_config& cfg) {
} else if (to_lowercase(con_atm) != atom("uncolored")) { } else if (to_lowercase(con_atm) != atom("uncolored")) {
// Disable console output if neither 'colored' nor 'uncolored' are present. // Disable console output if neither 'colored' nor 'uncolored' are present.
cfg_.console_verbosity = CAF_LOG_LEVEL_QUIET; cfg_.console_verbosity = CAF_LOG_LEVEL_QUIET;
cfg_.verbosity = cfg_.file_verbosity;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment