diff options
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
| -rw-r--r-- | src/citra_qt/bootmanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index b53206be6..6d08d6afc 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp | |||
| @@ -62,7 +62,7 @@ void EmuThread::Stop() | |||
| 62 | { | 62 | { |
| 63 | if (!isRunning()) | 63 | if (!isRunning()) |
| 64 | { | 64 | { |
| 65 | INFO_LOG(MASTER_LOG, "EmuThread::Stop called while emu thread wasn't running, returning..."); | 65 | LOG_WARNING(Frontend, "EmuThread::Stop called while emu thread wasn't running, returning..."); |
| 66 | return; | 66 | return; |
| 67 | } | 67 | } |
| 68 | stop_run = true; | 68 | stop_run = true; |
| @@ -76,7 +76,7 @@ void EmuThread::Stop() | |||
| 76 | wait(1000); | 76 | wait(1000); |
| 77 | if (isRunning()) | 77 | if (isRunning()) |
| 78 | { | 78 | { |
| 79 | WARN_LOG(MASTER_LOG, "EmuThread still running, terminating..."); | 79 | LOG_WARNING(Frontend, "EmuThread still running, terminating..."); |
| 80 | quit(); | 80 | quit(); |
| 81 | 81 | ||
| 82 | // TODO: Waiting 50 seconds can be necessary if the logging subsystem has a lot of spam | 82 | // TODO: Waiting 50 seconds can be necessary if the logging subsystem has a lot of spam |
| @@ -84,11 +84,11 @@ void EmuThread::Stop() | |||
| 84 | wait(50000); | 84 | wait(50000); |
| 85 | if (isRunning()) | 85 | if (isRunning()) |
| 86 | { | 86 | { |
| 87 | WARN_LOG(MASTER_LOG, "EmuThread STILL running, something is wrong here..."); | 87 | LOG_CRITICAL(Frontend, "EmuThread STILL running, something is wrong here..."); |
| 88 | terminate(); | 88 | terminate(); |
| 89 | } | 89 | } |
| 90 | } | 90 | } |
| 91 | INFO_LOG(MASTER_LOG, "EmuThread stopped"); | 91 | LOG_INFO(Frontend, "EmuThread stopped"); |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | 94 | ||