| 27 | static std::mutex s_log_mutex; |
| 28 | |
| 29 | static LOGLEVEL GetWindowLogLevel() |
| 30 | { |
| 31 | #ifdef _DEBUG |
| 32 | return LOGLEVEL_DEBUG; |
| 33 | #else |
| 34 | return (IsDevBuild || Host::GetBaseBoolSettingValue("Logging", "EnableVerbose", false)) ? LOGLEVEL_DEV : LOGLEVEL_INFO; |
| 35 | #endif |
| 36 | } |
| 37 | |
| 38 | LogWindow::LogWindow(bool attach_to_main) |
| 39 | : QMainWindow() |
no outgoing calls
no test coverage detected