debug: move to hyprutils' logger (#12673)
This commit is contained in:
parent
f88deb928a
commit
6175ecd4c4
147 changed files with 1696 additions and 1709 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#include "WelcomeManager.hpp"
|
||||
#include "../debug/Log.hpp"
|
||||
#include "../debug/log/Logger.hpp"
|
||||
#include "../config/ConfigValue.hpp"
|
||||
#include "../helpers/fs/FsUtils.hpp"
|
||||
|
||||
|
|
@ -11,12 +11,12 @@ CWelcomeManager::CWelcomeManager() {
|
|||
static auto PAUTOGEN = CConfigValue<Hyprlang::INT>("autogenerated");
|
||||
|
||||
if (!*PAUTOGEN) {
|
||||
Debug::log(LOG, "[welcome] skipping, not autogen");
|
||||
Log::logger->log(Log::DEBUG, "[welcome] skipping, not autogen");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!NFsUtils::executableExistsInPath("hyprland-welcome")) {
|
||||
Debug::log(LOG, "[welcome] skipping, no welcome app");
|
||||
Log::logger->log(Log::DEBUG, "[welcome] skipping, no welcome app");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue