Fix wrong app name in logger.h

For logging purposes (i.e. when errors are logged in this plugin), LOG_APP_NAME inadvertently had the same value as the homebrew_on_menu plugin. Make it ftpiiu_plugin instead.
This commit is contained in:
Dimitri A. 2024-12-21 16:59:06 +01:00 committed by Maschell
parent a3bbc1265e
commit 93030574d0

View File

@ -9,7 +9,7 @@ extern "C" {
#endif
#define LOG_APP_TYPE "P"
#define LOG_APP_NAME "homebrew_on_menu"
#define LOG_APP_NAME "ftpiiu_plugin"
#define __FILENAME_X__ (strrchr (__FILE__, '\\') ? strrchr (__FILE__, '\\') + 1 : __FILE__)
#define __FILENAME__ (strrchr (__FILE__, '/') ? strrchr (__FILE__, '/') + 1 : __FILENAME_X__)