Overload flush method and un-stupid the switch case
This commit is contained in:
parent
c7181dfcd6
commit
fec1722697
@ -55,7 +55,7 @@ public:
|
||||
* @param Preformatted QString which will be written into the logfile
|
||||
* @param Area name of the target logfile.
|
||||
*/
|
||||
void flushArea(const QString f_entry, const QString f_areaName);
|
||||
void flush(const QString f_entry, const QString f_areaName);
|
||||
|
||||
private:
|
||||
/**
|
||||
|
@ -25,8 +25,6 @@ ULogger::ULogger(QObject* parent) :
|
||||
writerModcall = new WriterModcall;
|
||||
break;
|
||||
case DataTypes::LogType::FULL :
|
||||
writerFull = new WriterFull;
|
||||
break;
|
||||
case DataTypes::LogType::FULLAREA :
|
||||
writerFull = new WriterFull;
|
||||
break;
|
||||
@ -40,8 +38,6 @@ ULogger::~ULogger()
|
||||
writerModcall->deleteLater();
|
||||
break;
|
||||
case DataTypes::LogType::FULL :
|
||||
writerFull->deleteLater();
|
||||
break;
|
||||
case DataTypes::LogType::FULLAREA :
|
||||
writerFull->deleteLater();
|
||||
break;
|
||||
@ -155,7 +151,7 @@ void ULogger::updateAreaBuffer(const QString& f_areaName, const QString& f_logEn
|
||||
writerFull->flush(f_logEntry);
|
||||
}
|
||||
if (ConfigManager::loggingType() == DataTypes::LogType::FULLAREA) {
|
||||
writerFull->flushArea(f_logEntry, f_areaName);
|
||||
writerFull->flush(f_logEntry, f_areaName);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -37,7 +37,7 @@ void WriterFull::flush(const QString f_entry)
|
||||
l_logfile.close();
|
||||
}
|
||||
|
||||
void WriterFull::flushArea(const QString f_entry, const QString f_areaName)
|
||||
void WriterFull::flush(const QString f_entry, const QString f_areaName)
|
||||
{
|
||||
l_logfile.setFileName(QString("logs/%1_%2.log").arg(f_areaName, QDate::currentDate().toString("yyyy-MM-dd")));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user