3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-03-31 19:43:13 +00:00
Files
Hyprland/src/debug/Log.hpp
2022-03-16 20:50:55 +01:00

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, ...);
};