69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/*
|
|
* Copyright (C) 2019 Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#include <QtDebug>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QMutex>
|
|
#include <QTime>
|
|
|
|
//输出消息
|
|
// Output message
|
|
static void outputMessage(QtMsgType type, const QMessageLogContext &context, const QString &msg)
|
|
{
|
|
static QMutex mutex;
|
|
mutex.lock();
|
|
|
|
QString text;
|
|
switch(type)
|
|
{
|
|
case QtDebugMsg:
|
|
text = QString("Debug:");
|
|
break;
|
|
|
|
case QtWarningMsg:
|
|
text = QString("Warning:");
|
|
break;
|
|
|
|
case QtCriticalMsg:
|
|
text = QString("Critical:");
|
|
break;
|
|
|
|
case QtFatalMsg:
|
|
text = QString("Fatal:");
|
|
}
|
|
|
|
QString contextInfo = QString("File:(%1) Line:(%2)").arg(QString(context.file)).arg(context.line);
|
|
QString cDataTime = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss ddd");
|
|
QString cDate = QString("(%1)").arg(cDataTime);
|
|
QString message = QString("%1 %2 %3 %4").arg(text).arg(contextInfo).arg(msg).arg(cDate);
|
|
|
|
QFile file("log.txt");
|
|
file.open(QIODevice::WriteOnly | QIODevice::Append);
|
|
QTextStream textStream(&file);
|
|
textStream << message << "\r\n";
|
|
file.flush();
|
|
file.close();
|
|
|
|
mutex.unlock();
|
|
}
|
|
|
|
#endif // DEBUG_H
|