diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-06-16 16:43:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 16:43:18 -0400 |
commit | 945f3222aee810d4e4309d21ea811399cc65d782 (patch) | |
tree | becc580b33947c1938b08d16308791e734d63bfe /src | |
parent | 561f5c9c14aeced2143e03be0af07ed24ff6bb4a (diff) | |
parent | 9e384ed54b6ca7348d798177d7b17c514937766d (diff) |
Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filter
Make yuzu-cmd respect log_filter setting
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 0dce5e274..e840732e2 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -138,6 +138,12 @@ int main(int argc, char** argv) { Config config{config_path}; + // apply the log_filter setting + // the logger was initialized before and doesn't pick up the filter on its own + Common::Log::Filter filter; + filter.ParseFilterString(Settings::values.log_filter.GetValue()); + Common::Log::SetGlobalFilter(filter); + if (!program_args.empty()) { Settings::values.program_args = program_args; } |