mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-11 17:30:37 +01:00
18 lines
327 B
C
18 lines
327 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <WString.h>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
class LoggingClass {
|
||
|
|
public:
|
||
|
|
LoggingClass();
|
||
|
|
void applyLogLevels();
|
||
|
|
const std::vector<String>& getConfigurableModules() const;
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::vector<String> _configurableModules;
|
||
|
|
};
|
||
|
|
|
||
|
|
extern LoggingClass Logging;
|