aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main.cpp
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-08-22 18:50:38 +0200
committervaxerski <[email protected]>2022-08-22 18:50:38 +0200
commit63493b57363f592861f160a38164f2f7198a7812 (patch)
tree402f2d08e42cb0ce8d7b76d4492286cbfd3027f9 /src/main.cpp
parent6565c31dbfb590c9173a192f4f26e6ea5c787375 (diff)
downloadHyprland-63493b57363f592861f160a38164f2f7198a7812.tar.gz
Hyprland-63493b57363f592861f160a38164f2f7198a7812.zip
use a custom logging func for wlr
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 86c5da21..a37e993c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -46,7 +46,7 @@ int main(int argc, char** argv) {
const auto LOGWLR = getenv("HYPRLAND_LOG_WLR");
if (LOGWLR && std::string(LOGWLR) == "1")
- wlr_log_init(WLR_DEBUG, nullptr);
+ wlr_log_init(WLR_DEBUG, Debug::wlrLog);
// let's init the compositor.
// it initializes basic Wayland stuff in the constructor.