| 96 | } |
| 97 | |
| 98 | void log(const QByteArray &data, const QString &loggename = QString{}) |
| 99 | { |
| 100 | auto mylogger = Log4Qt::Logger::logger(loggename); |
| 101 | Log4Qt::BinaryLoggingEvent event(mylogger, Log4Qt::Level::INFO_INT, data); |
| 102 | mylogger->callAppenders(event); |
| 103 | } |
| 104 | |
| 105 | void configureLogger(Log4Qt::Logger *mylogger) |
| 106 | { |
nothing calls this directly
no test coverage detected