Add configurable logging options
This commit is contained in:
parent
6511e13585
commit
d51203e634
@ -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
|
||||||
|
@ -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();
|
||||||
@ -95,11 +101,20 @@ void Logger::flush()
|
|||||||
// raiden suggested this, but idk if i want to use it
|
// raiden suggested this, but idk if i want to use it
|
||||||
// QString time = QDateTime::currentDateTime().toString("ddd mm/dd/yy hh:mm:ss");
|
// QString time = QDateTime::currentDateTime().toString("ddd mm/dd/yy hh:mm:ss");
|
||||||
// QString filename = QStringLiteral("reports/%1/%2.log").arg(area->name).arg(time);
|
// QString filename = QStringLiteral("reports/%1/%2.log").arg(area->name).arg(time);
|
||||||
QFile logfile("logs/server.log");
|
QSettings config("config/config.ini", QSettings::IniFormat);
|
||||||
if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
|
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();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user