jce-manager/src/jce_logger.h
Sagi Dayan a6a923e31b Added a Log Parser & Atempt to fix #12
Added a class that pars all qDebug Messages to a log file.
Atempt to fix #12, on linux it works.
2014-09-17 00:08:29 +03:00

18 lines
318 B
C++

#ifndef JCE_LOGGER_H
#define JCE_LOGGER_H
#include <QMessageLogContext>
#include <QString>
#include <QDateTime>
#include <QFile>
#include <QTextStream>
class jce_logger
{
public:
static void customMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
};
#endif // JCE_LOGGER_H