mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-11-05 04:12:29 +03:00
9273b49b62
Signed-off-by: Adam Treat <treat.adam@gmail.com> Signed-off-by: Jared Van Bortel <jared@nomic.ai> Co-authored-by: Jared Van Bortel <jared@nomic.ai>
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
#include "logger.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QDebug>
|
|
#include <QGlobalStatic>
|
|
#include <QIODevice>
|
|
#include <QStandardPaths>
|
|
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
using namespace Qt::Literals::StringLiterals;
|
|
|
|
class MyLogger: public Logger { };
|
|
Q_GLOBAL_STATIC(MyLogger, loggerInstance)
|
|
Logger *Logger::globalInstance()
|
|
{
|
|
return loggerInstance();
|
|
}
|
|
|
|
Logger::Logger()
|
|
{
|
|
// Get log file dir
|
|
auto dir = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation);
|
|
// Remove old log file
|
|
QFile::remove(dir+"/log-prev.txt");
|
|
QFile::rename(dir+"/log.txt", dir+"/log-prev.txt");
|
|
// Open new log file
|
|
m_file.setFileName(dir+"/log.txt");
|
|
if (!m_file.open(QIODevice::NewOnly | QIODevice::WriteOnly | QIODevice::Text)) {
|
|
qWarning() << "Failed to open log file, logging to stdout...";
|
|
m_file.open(stdout, QIODevice::WriteOnly | QIODevice::Text);
|
|
}
|
|
// On success, install message handler
|
|
qInstallMessageHandler(Logger::messageHandler);
|
|
}
|
|
|
|
void Logger::messageHandler(QtMsgType type, const QMessageLogContext &, const QString &msg)
|
|
{
|
|
auto logger = globalInstance();
|
|
// Get message type as string
|
|
QString typeString;
|
|
switch (type) {
|
|
case QtDebugMsg:
|
|
typeString = "Debug";
|
|
break;
|
|
case QtInfoMsg:
|
|
typeString = "Info";
|
|
break;
|
|
case QtWarningMsg:
|
|
typeString = "Warning";
|
|
break;
|
|
case QtCriticalMsg:
|
|
typeString = "Critical";
|
|
break;
|
|
case QtFatalMsg:
|
|
typeString = "Fatal";
|
|
break;
|
|
default:
|
|
typeString = "???";
|
|
}
|
|
// Get time and date
|
|
auto timestamp = QDateTime::currentDateTime().toString();
|
|
// Write message
|
|
const std::string out = u"[%1] (%2): %3\n"_s.arg(typeString, timestamp, msg).toStdString();
|
|
logger->m_file.write(out.c_str());
|
|
logger->m_file.flush();
|
|
std::cerr << out;
|
|
fflush(stderr);
|
|
}
|