2019-11-06 14:52:09 +01:00

19 lines
310 B
C++

#pragma once
#include "serversdk/logger.h"
// Qt
#include <QtCore>
// c++
#include <memory>
namespace core {
/** internal application logger handler */
void installLogger(QtMsgType type, const QMessageLogContext &context, const QString &msg);
/** Install logger to application */
void initAppLogger();
}