| 27 | QtMessageHandler original = Q_NULLPTR; |
| 28 | |
| 29 | static void buffer_debug_output(QtMsgType type, const QMessageLogContext &context, const QString &msg) |
| 30 | { |
| 31 | buffered_debug_output->append(qFormatLogMessage(type, context, msg)); |
| 32 | |
| 33 | original(type, context, msg); |
| 34 | } |
| 35 | |
| 36 | static void debug_manager_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg) |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected