From 0d7a0c0817dd0a7a395bf1817026d2880d747bd2 Mon Sep 17 00:00:00 2001
From: lat9nq <lat9nq@gmail.com>
Date: Mon, 28 Mar 2022 23:14:42 -0400
Subject: [PATCH] yuzu_cmd: Start the logging backend

---
 src/yuzu_cmd/yuzu.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 14bf82f39b..ab12dd15d7 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;