| 34 | } |
| 35 | |
| 36 | static void debug_manager_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg) |
| 37 | { |
| 38 | const QString log_message = qFormatLogMessage(type, context, msg); |
| 39 | for (DebugOutputHandler handler : *handlers) { |
| 40 | handler(log_message); |
| 41 | } |
| 42 | |
| 43 | original(type, context, msg); |
| 44 | } |
| 45 | |
| 46 | |
| 47 | void DebugManager::manageDebugOutput() |
nothing calls this directly
no outgoing calls
no test coverage detected