Merge pull request #53 from MangosArentLiterature/logger

Add configurable logging options
This commit is contained in:
scatterflower 2021-04-04 03:20:07 -05:00 committed by GitHub
commit 9aab9f30bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 6 deletions

View File

@ -15,6 +15,7 @@ webao_port=27017
auth=simple auth=simple
modpass=changeme modpass=changeme
logbuffer=500 logbuffer=500
logger=modcall
[Dice] [Dice]
max_value=100 max_value=100

View File

@ -77,8 +77,14 @@ QString Logger::buildEntry(AOClient *client, QString type, QString message)
void Logger::addEntry(QString entry) void Logger::addEntry(QString entry)
{ {
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString log_type = config.value("logging", "modcall").toString();
if (buffer.length() < max_length) { if (buffer.length() < max_length) {
buffer.enqueue(entry); buffer.enqueue(entry);
if (log_type == "full") {
flush();
}
} }
else { else {
buffer.dequeue(); buffer.dequeue();
@ -88,14 +94,25 @@ void Logger::addEntry(QString entry)
void Logger::flush() void Logger::flush()
{ {
// raiden suggested this, but idk if i want to use it QDir dir("logs/");
// QString time = QDateTime::currentDateTime().toString("ddd mm/dd/yy hh:mm:ss"); if (!dir.exists()) {
// QString filename = QStringLiteral("reports/%1/%2.log").arg(area->name).arg(time); dir.mkpath(".");
QFile logfile("config/server.log"); }
if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString log_type = config.value("logging", "modcall").toString();
QFile logfile;
if (log_type == "modcall") {
logfile.setFileName(QString("logs/report_%1_%2.log").arg((area->name), (QDateTime::currentDateTime().toString("yyyy-MM-dd_hhmmss"))));
}
else if (log_type == "full") {
logfile.setFileName(QString("logs/%1.log").arg(QDate::currentDate().toString("yyyy-MM-dd")));
}
if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
QTextStream file_stream(&logfile); QTextStream file_stream(&logfile);
while (!buffer.isEmpty()) while (!buffer.isEmpty())
file_stream << buffer.dequeue(); file_stream << buffer.dequeue();
} }
logfile.close(); logfile.close();
} }