mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-14 08:35:48 +01:00
2017-12-01 Fred Gleason <fredg@paravelsystems.com>
* Added an 'Engine=' directive to the [MySQL] section of rd.conf(5). * Refactored the schema update code to use standard form in rdadmin(1).
This commit is contained in:
@@ -61,7 +61,8 @@ void Xport::AddLog()
|
||||
}
|
||||
|
||||
QString err_msg;
|
||||
if(!RDLog::create(log_name,service_name,xport_user->name(),&err_msg)) {
|
||||
if(!RDLog::create(log_name,service_name,xport_user->name(),&err_msg,
|
||||
xport_config)) {
|
||||
XmlExit(err_msg,500,"logs.cpp",LINE_NUMBER);
|
||||
}
|
||||
XmlExit("OK",200,"logs.cpp",LINE_NUMBER);
|
||||
@@ -500,7 +501,7 @@ void Xport::SaveLog()
|
||||
log->setEndDate(end_date);
|
||||
log->setModifiedDatetime(QDateTime::currentDateTime());
|
||||
|
||||
logevt->save();
|
||||
logevt->save(xport_config);
|
||||
|
||||
XmlExit(QString().sprintf("OK Saved %d events",logevt->size()),
|
||||
200,"logs.cpp",LINE_NUMBER);
|
||||
|
||||
Reference in New Issue
Block a user