summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-03-29 09:52:50 +0200
committerGitHub <noreply@github.com>2022-03-29 09:52:50 +0200
commit6552968df409817af219e339c46a6cf703ec6386 (patch)
treebc600bca8b58d3fa9735f25d62af1ea9ad510ba9
parentMerge pull request #8106 from ameerj/gl-extreme-crash (diff)
parentyuzu_cmd: Start the logging backend (diff)
downloadyuzu-6552968df409817af219e339c46a6cf703ec6386.tar
yuzu-6552968df409817af219e339c46a6cf703ec6386.tar.gz
yuzu-6552968df409817af219e339c46a6cf703ec6386.tar.bz2
yuzu-6552968df409817af219e339c46a6cf703ec6386.tar.lz
yuzu-6552968df409817af219e339c46a6cf703ec6386.tar.xz
yuzu-6552968df409817af219e339c46a6cf703ec6386.tar.zst
yuzu-6552968df409817af219e339c46a6cf703ec6386.zip
-rw-r--r--src/yuzu_cmd/yuzu.cpp1
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;