mirror of
https://github.com/Trensa-Organization/hy3.git
synced 2025-03-16 03:03:40 +01:00
9 lines
199 B
C++
9 lines
199 B
C++
|
#pragma once
|
||
|
|
||
|
#include <hyprland/src/debug/Log.hpp>
|
||
|
|
||
|
template <typename... Args>
|
||
|
void hy3_log(LogLevel level, const std::string& fmt, Args&&... args) {
|
||
|
Debug::log(level, "[hy3] " + fmt, args...);
|
||
|
}
|