diff options
author | lat9nq <lat9nq@gmail.com> | 2022-03-28 23:14:42 -0400 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-03-28 23:14:42 -0400 |
commit | 0d7a0c0817dd0a7a395bf1817026d2880d747bd2 (patch) | |
tree | fd6ef7f4831ffa16b93cfe621621b8e542682452 /src/yuzu_cmd/yuzu.cpp | |
parent | 642913b0d1e27e4a81ee454903a65b5ce5ddee72 (diff) |
yuzu_cmd: Start the logging backend
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 14bf82f39..ab12dd15d 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -74,6 +74,7 @@ static void PrintVersion() { int main(int argc, char** argv) { Common::Log::Initialize(); Common::Log::SetColorConsoleBackendEnabled(true); + Common::Log::Start(); Common::DetachedTasks detached_tasks; int option_index = 0; |