mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:26:00 +01:00
16 lines
No EOL
209 B
C++
16 lines
No EOL
209 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
#define LOGMESSAGESIZE 1024
|
|
|
|
enum LogLevel {
|
|
NONE = -1,
|
|
LOG = 0,
|
|
WARN,
|
|
ERR,
|
|
CRIT
|
|
};
|
|
|
|
namespace Debug {
|
|
void log(LogLevel level, const char* fmt, ...);
|
|
}; |