2024-06-24 13:23:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2024-2024 QuasarApp.
|
|
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
* of this license document, but changing it is not allowed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QALOGGER_H
|
|
|
|
#define QALOGGER_H
|
|
|
|
|
|
|
|
#include "quasarapp_global.h"
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
|
|
|
|
namespace QuasarAppUtils {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The QALogger class is logger handler for app.
|
|
|
|
*/
|
|
|
|
class QUASARAPPSHARED_EXPORT QALogger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QALogger();
|
|
|
|
|
2024-06-24 13:27:03 +02:00
|
|
|
/**
|
|
|
|
* @brief init This method initialize logging of all qt message into file.
|
|
|
|
*/
|
2024-06-24 13:23:40 +02:00
|
|
|
void init();
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // QALOGGER_H
|