mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
* WLAN: add error handling * WLAN: parameter global struct * WLAN.ini -> more info text * RSSIThreshold * Rename logs * Boot process: error handling * Update texts * Comments * Init sequence * Prepare for check dir creation * add check makedir, update logs * Blink code for OTA+SoftAP * Blink code for missing time snyc * Update * reboot -> switch LED off * Update log texts * Update * Update log texts * create empty default folders at startup * Update * Adapt log level * Print log level switch * Update * Update text * Add SD free space to log * WIFI/MQTT disconnect message set to WARN (+ ERROR)
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#ifndef CLASSLOGFILE_H
|
|
#define CLASSLOGFILE_H
|
|
|
|
|
|
#include <string>
|
|
#include "esp_log.h"
|
|
|
|
|
|
class ClassLogFile
|
|
{
|
|
private:
|
|
std::string logroot;
|
|
std::string logfile;
|
|
std::string dataroot;
|
|
std::string datafile;
|
|
unsigned short logFileRetentionInDays;
|
|
unsigned short dataLogRetentionInDays;
|
|
bool doDataLogToSD;
|
|
esp_log_level_t loglevel;
|
|
public:
|
|
ClassLogFile(std::string _logpath, std::string _logfile, std::string _logdatapath, std::string _datafile);
|
|
|
|
void WriteHeapInfo(std::string _id);
|
|
|
|
void setLogLevel(esp_log_level_t _logLevel);
|
|
void SetLogFileRetention(unsigned short _LogFileRetentionInDays);
|
|
void SetDataLogRetention(unsigned short _DataLogRetentionInDays);
|
|
void SetDataLogToSD(bool _doDataLogToSD);
|
|
bool GetDataLogToSD();
|
|
|
|
void WriteToFile(esp_log_level_t level, std::string tag, std::string message, bool _time);
|
|
void WriteToFile(esp_log_level_t level, std::string tag, std::string message);
|
|
|
|
void CloseLogFileAppendHandle();
|
|
|
|
bool CreateLogDirectories();
|
|
void RemoveOldLogFile();
|
|
void RemoveOldDataLog();
|
|
|
|
// void WriteToData(std::string _ReturnRawValue, std::string _ReturnValue, std::string _ReturnPreValue, std::string _ErrorMessageText, std::string _digital, std::string _analog);
|
|
void WriteToData(std::string _timestamp, std::string _name, std::string _ReturnRawValue, std::string _ReturnValue, std::string _ReturnPreValue, std::string _ReturnRateValue, std::string _ReturnChangeAbsolute, std::string _ErrorMessageText, std::string _digital, std::string _analog);
|
|
|
|
|
|
std::string GetCurrentFileName();
|
|
std::string GetCurrentFileNameData();
|
|
};
|
|
|
|
extern ClassLogFile LogFile;
|
|
|
|
#endif //CLASSLOGFILE_H
|