Utils: Removed QDebug logger
This commit is contained in:
parent
bddacbedb8
commit
97710e2180
@ -20,22 +20,4 @@ QByteArray Utils::readFile(QString path)
|
|||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDebug &Utils::info()
|
|
||||||
{
|
|
||||||
static QDebug result = []{
|
|
||||||
QFile *file = new QFile();
|
|
||||||
file->open(stderr, QIODevice::WriteOnly);
|
|
||||||
return QDebug(file);
|
|
||||||
}();
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDebug &Utils::error()
|
|
||||||
{
|
|
||||||
static QDebug result = []{
|
|
||||||
QFile *file = new QFile();
|
|
||||||
file->open(stdout, QIODevice::WriteOnly);
|
|
||||||
return QDebug(file);
|
|
||||||
}();
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QByteArray>
|
#include <QByteArray>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
|
#include <QDebug>
|
||||||
#include "qssgeneralexception.h"
|
#include "qssgeneralexception.h"
|
||||||
|
|
||||||
class Utils
|
class Utils
|
||||||
@ -11,8 +12,7 @@ class Utils
|
|||||||
public:
|
public:
|
||||||
Utils();
|
Utils();
|
||||||
static QByteArray readFile(QString path);
|
static QByteArray readFile(QString path);
|
||||||
static QDebug &info();
|
|
||||||
static QDebug &error();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // UTILS_H
|
#endif // UTILS_H
|
||||||
|
Loading…
Reference in New Issue
Block a user