diff options
author | vaxerski <[email protected]> | 2022-08-22 18:50:38 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-08-22 18:50:38 +0200 |
commit | 63493b57363f592861f160a38164f2f7198a7812 (patch) | |
tree | 402f2d08e42cb0ce8d7b76d4492286cbfd3027f9 /src/main.cpp | |
parent | 6565c31dbfb590c9173a192f4f26e6ea5c787375 (diff) | |
download | Hyprland-63493b57363f592861f160a38164f2f7198a7812.tar.gz Hyprland-63493b57363f592861f160a38164f2f7198a7812.zip |
use a custom logging func for wlr
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
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. |