Fix duplicated logs on windows

This commit is contained in:
James Rowe 2018-04-27 09:58:48 -06:00
parent 1b94f25e6c
commit 98c150e7fc
2 changed files with 6 additions and 2 deletions

View file

@ -34,6 +34,12 @@ void ToggleConsole() {
freopen_s(&temp, "NUL", "w", stderr); freopen_s(&temp, "NUL", "w", stderr);
} }
} }
#else
if (UISettings::values.show_console) {
Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>());
} else {
Log::RemoveBackend(Log::ColorConsoleBackend::Name());
}
#endif #endif
} }
} // namespace Debugger } // namespace Debugger

View file

@ -1338,8 +1338,6 @@ void GMainWindow::SyncMenuUISettings() {
#endif #endif
int main(int argc, char* argv[]) { int main(int argc, char* argv[]) {
Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>());
MicroProfileOnThreadCreate("Frontend"); MicroProfileOnThreadCreate("Frontend");
SCOPE_EXIT({ MicroProfileShutdown(); }); SCOPE_EXIT({ MicroProfileShutdown(); });