From 48b1a3679db1ead082e20841c2ccf3ea6dd4e0ac Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 9 Aug 2024 16:43:45 +0200 Subject: [PATCH] Improve logging --- source/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 1d624e3..6b1b697 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -47,13 +47,14 @@ WUMS_INITIALIZE() { vpadInput.update(1280, 720); auto buttomComboSafeMode = Input::eButtons::BUTTON_L | Input::eButtons::BUTTON_UP | Input::eButtons::BUTTON_MINUS; if ((vpadInput.data.buttons_h & (buttomComboSafeMode)) == buttomComboSafeMode) { + DEBUG_FUNCTION_LINE_INFO("Safe Mode activated!"); auto tobeIgnoredFilePath = getNonBaseAromaPluginFilenames(getPluginPath()); WUPSBackendSettings::LoadSettings(); std::set inactivePlugins = WUPSBackendSettings::GetInactivePluginFilenames(); inactivePlugins.insert(tobeIgnoredFilePath.begin(), tobeIgnoredFilePath.end()); for (const auto &d : inactivePlugins) { - DEBUG_FUNCTION_LINE_INFO("%s should be ignores", d.c_str()); + DEBUG_FUNCTION_LINE_INFO("safemode: %s should be ignored", d.c_str()); } WUPSBackendSettings::SetInactivePluginFilenames(inactivePlugins); WUPSBackendSettings::SaveSettings();