Logging: Remove customizable logging backends

Separate code for customizing logging backends from this branch
This commit is contained in:
Daniel Lim Wee Soong
2018-03-16 11:56:40 +08:00
parent eee388588e
commit 373efd3158
5 changed files with 12 additions and 208 deletions

View File

@ -44,7 +44,7 @@ void ConfigureDebug::applyConfiguration() {
Debugger::ToggleConsole();
Log::Filter filter;
filter.ParseFilterString(Settings::values.log_filter);
Log::SetGlobalFilter(filter);
Log::SetFilter(&filter);
Settings::Apply();
}