mirror of
https://github.com/hyprwm/Hyprland.git
synced 2026-03-31 19:43:13 +00:00
16 lines
209 B
C++
16 lines
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, ...);
|
|
}; |