| 30 | } |
| 31 | |
| 32 | bool SettingsForm::IsDebugLoggingEnabled() { |
| 33 | return std::filesystem::exists(AppSettings::GetBaseDir() / "LOG_DEBUG"); |
| 34 | } |
| 35 | |
| 36 | void SettingsForm::SetDebugLoggingEnabled(bool enabled) { |
| 37 | if(enabled) { |
nothing calls this directly
no outgoing calls
no test coverage detected