add Logging to various locations #11

Merged
tueem merged 18 commits from feat/logging into dev 2024-12-20 17:51:24 +00:00
Showing only changes of commit 3d19fae6b8 - Show all commits

View File

@ -56,8 +56,8 @@ public class InteractionRegistry {
logger.debug("Added Executable Command {}{}{} for registration", logger.debug("Added Executable Command {}{}{} for registration",
def.applicationCommand().name(), def.applicationCommand().name(),
def.subCommandGroup().name().isBlank() ? "" : "." + def.subCommandGroup().name(), def.subCommandGroup() == null ? "" : "." + def.subCommandGroup().name(),
def.subCommand().name().isBlank() ? "" : "." + def.subCommand().name() def.subCommand() == null ? "" : "." + def.subCommand().name()
); );
}); });