Add basic constructor
This commit is contained in:
parent
055ef2e6a4
commit
4d20facc33
@ -41,7 +41,8 @@ public:
|
||||
*/
|
||||
enum class LogType {
|
||||
MODCALL,
|
||||
FULL
|
||||
FULL,
|
||||
SQL
|
||||
};
|
||||
Q_ENUM(LogType)
|
||||
};
|
||||
|
@ -23,6 +23,9 @@
|
||||
#include <QQueue>
|
||||
#include <QDateTime>
|
||||
#include "include/config_manager.h"
|
||||
#include "include/logger/writer_full.h"
|
||||
#include "include/logger/writer_modcall.h"
|
||||
#include "include/logger/writer_sql.h"
|
||||
|
||||
/**
|
||||
* @brief The Universal Logger class to provide a common place to handle, store and write logs to file.
|
||||
@ -105,6 +108,21 @@ private:
|
||||
* @details This QMap uses the area name as the index key to access its respective buffer.
|
||||
*/
|
||||
QMap<QString, QQueue<QString>> m_bufferMap;
|
||||
|
||||
/**
|
||||
* @brief Pointer to modcall writer. Handles QQueue delogging into area specific file.
|
||||
*/
|
||||
WriterModcall* writerModcall;
|
||||
|
||||
/**
|
||||
* @brief Pointer to full writer. Handles single messages in one file.
|
||||
*/
|
||||
WriterFull* writerFull;
|
||||
|
||||
/**
|
||||
* @brief Pointer to SQL writer. Handles execution of log SQL queries.
|
||||
*/
|
||||
WriterSQL* writerSQL;
|
||||
};
|
||||
|
||||
#endif //U_LOGGER_H
|
||||
|
@ -21,6 +21,14 @@ ULogger::ULogger(QObject* parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
|
||||
switch (ConfigManager::loggingType()) {
|
||||
case DataTypes::LogType::MODCALL :
|
||||
writerModcall = new WriterModcall;
|
||||
case DataTypes::LogType::FULL :
|
||||
writerFull = new WriterFull;
|
||||
case DataTypes::LogType::SQL :
|
||||
writerSQL = new WriterSQL;
|
||||
}
|
||||
}
|
||||
|
||||
void ULogger::logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,
|
||||
|
Loading…
Reference in New Issue
Block a user