internal: Wayland Protocol impl improvements (#2944)

This commit is contained in:
Vaxry
2023-08-21 19:36:09 +02:00
committed by GitHub
parent 17d8e4750b
commit 37128bfd43
6 changed files with 98 additions and 33 deletions

View File

@@ -4,14 +4,14 @@
#define LOGMESSAGESIZE 1024
enum LogLevel
{
enum LogLevel {
NONE = -1,
LOG = 0,
WARN,
ERR,
CRIT,
INFO
INFO,
TRACE
};
namespace Debug {
@@ -23,4 +23,5 @@ namespace Debug {
inline int64_t* disableLogs = nullptr;
inline int64_t* disableTime = nullptr;
inline bool disableStdout = false;
inline bool trace = false;
};