You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
465 B
23 lines
465 B
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <QDebug>
|
|
#include <QFile>
|
|
#include <QHash>
|
|
|
|
class Logger
|
|
{
|
|
private:
|
|
static QFile* _logFile;
|
|
static QHash<QtMsgType, QString> _logTitles;
|
|
|
|
public:
|
|
Logger(QString fileName = "./DefaultHatefLogFile.log");
|
|
~Logger();
|
|
|
|
static void makeFinishingLine();
|
|
static void messageOutput(QtMsgType type, const QMessageLogContext& context,
|
|
const QString& msg);
|
|
};
|
|
|
|
#endif //LOGGER_H
|
|
|