| 195 | } |
| 196 | |
| 197 | void MainAppWindow::LogLevelChanged(const txmp::LogLevel &level) |
| 198 | { |
| 199 | const auto spdlogLevel = static_cast<spdlog::level::level_enum>(level); |
| 200 | |
| 201 | auto &configManager = m_App.GetConfigManager(); |
| 202 | configManager.GetConfig().LogVerbosity = spdlogLevel; |
| 203 | configManager.UpdateVerbosity(); |
| 204 | } |
| 205 | |
| 206 | void MainAppWindow::DumpDynamicStateRequested() |
| 207 | { |
no test coverage detected