Logging: added a console and optional dual file logger

pull/127/head
f4exb 2017-11-11 23:44:05 +01:00
rodzic 85e8f099c7
commit 423cc62e12
4 zmienionych plików z 123 dodań i 2 usunięć

Wyświetl plik

@ -2,6 +2,7 @@ project(logging)
set(logging_SOURCES
dualfilelogger.cpp
loggerwithfile.cpp
filelogger.cpp
logger.cpp
logmessage.cpp
@ -9,6 +10,7 @@ set(logging_SOURCES
set(httpserver_HEADERS
dualfilelogger.h
loggerwithfile.h
filelogger.h
logger.h
logmessage.h

Wyświetl plik

@ -0,0 +1,39 @@
/*
* loggerwithfile.cpp
*
* Created on: Nov 11, 2017
* Author: f4exb
*/
#include "loggerwithfile.h"
using namespace qtwebapp;
LoggerWithFile::LoggerWithFile(QObject* parent)
:Logger(parent), fileLogger(0), useFileFlogger(false)
{
consoleLogger = new Logger(this);
}
void LoggerWithFile::createFileLogger(const FileLoggerSettings& settings, const int refreshInterval)
{
fileLogger = new FileLogger(settings, refreshInterval, this);
}
void LoggerWithFile::log(const QtMsgType type, const QString& message, const QString &file, const QString &function, const int line)
{
consoleLogger->log(type,message,file,function,line);
if (fileLogger && useFileFlogger) {
fileLogger->log(type,message,file,function,line);
}
}
void LoggerWithFile::clear(const bool buffer, const bool variables)
{
consoleLogger->clear(buffer,variables);
if (fileLogger && useFileFlogger) {
fileLogger->clear(buffer,variables);
}
}

Wyświetl plik

@ -0,0 +1,80 @@
/*
* loggerwithfile.h
*
* Created on: Nov 11, 2017
* Author: f4exb
*/
#ifndef LOGGING_LOGGERWITHFILE_H_
#define LOGGING_LOGGERWITHFILE_H_
#include <QtGlobal>
#include "logger.h"
#include "filelogger.h"
namespace qtwebapp {
/**
Logs messages to console and optionally to a file simultaneously.
@see FileLogger for a description of the two underlying file logger.
@see Logger for a description of the console loger.
*/
class DECLSPEC LoggerWithFile : public Logger {
Q_OBJECT
Q_DISABLE_COPY(LoggerWithFile)
public:
LoggerWithFile(QObject *parent = 0);
void createFileLogger(const FileLoggerSettings& settings, const int refreshInterval=10000);
/**
Decorate and log the message, if type>=minLevel.
This method is thread safe.
@param type Message type (level)
@param message Message text
@param file Name of the source file where the message was generated (usually filled with the macro __FILE__)
@param function Name of the function where the message was generated (usually filled with the macro __LINE__)
@param line Line Number of the source file, where the message was generated (usually filles with the macro __func__ or __FUNCTION__)
@see LogMessage for a description of the message decoration.
*/
virtual void log(const QtMsgType type, const QString& message, const QString &file="", const QString &function="", const int line=0);
/**
Clear the thread-local data of the current thread.
This method is thread safe.
@param buffer Whether to clear the backtrace buffer
@param variables Whether to clear the log variables
*/
virtual void clear(const bool buffer=true, const bool variables=true);
bool getUseFileLogger() const { return useFileFlogger; }
void setUseFileLogger(bool use) { useFileFlogger = use; }
/**
* Get a file logger settings copy
* @return The current file logger settings
*/
FileLoggerSettings getFileLoggerSettings() const { return fileLogger->getFileLoggerSettings(); }
/**
* Set new file logger settings data
* @param File logger settings to replace current data
*/
void setFileLoggerSettings(const FileLoggerSettings& settings) { fileLogger->setFileLoggerSettings(settings); }
private:
/** First console logger */
Logger* consoleLogger;
/** Second file logger */
FileLogger* fileLogger;
/** Use file logger indicator */
bool useFileFlogger;
};
} // end of namespace
#endif /* LOGGING_LOGGERWITHFILE_H_ */

Wyświetl plik

@ -1,6 +1,6 @@
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
HEADERS += $$PWD/logglobal.h $$PWD/logmessage.h $$PWD/logger.h $$PWD/filelogger.h $$PWD/dualfilelogger.h
HEADERS += $$PWD/logglobal.h $$PWD/logmessage.h $$PWD/logger.h $$PWD/filelogger.h $$PWD/dualfilelogger.h $$PWD/loggerwithfile.h
SOURCES += $$PWD/logmessage.cpp $$PWD/logger.cpp $$PWD/filelogger.cpp $$PWD/dualfilelogger.cpp
SOURCES += $$PWD/logmessage.cpp $$PWD/logger.cpp $$PWD/filelogger.cpp $$PWD/dualfilelogger.cpp $$PWD/loggerwithfile.cpp