From 47f96fe13ae54d17c83de4e565612279530c957e Mon Sep 17 00:00:00 2001
From: Daniel Lim Wee Soong <weesoong.lim@gmail.com>
Date: Thu, 22 Mar 2018 18:26:43 +0800
Subject: [PATCH] Change "yuzu starting..." to be logged with the new macro

Just as a proof that it works
---
 src/yuzu/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index e5252abdc3..9b2047e042 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -387,7 +387,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
 }
 
 void GMainWindow::BootGame(const QString& filename) {
-    LOG_INFO(Frontend, "yuzu starting...");
+    NGLOG_INFO(Frontend, "yuzu starting...");
     StoreRecentFile(filename); // Put the filename on top of the list
 
     if (!LoadROM(filename))