Add debug log on cmd count

This commit is contained in:
2023-12-26 07:19:26 -06:00
parent 56793d6c28
commit 68cdba4d96

View File

@@ -22,6 +22,7 @@ func Register() ([]*discordgo.ApplicationCommand, error) {
if err != nil { if err != nil {
log.Panic().Err(err).Msg("Cannot get commands") log.Panic().Err(err).Msg("Cannot get commands")
} }
log.Debug().Int("registered", len(currentComands)).Int("definitions", len(commandDefinitions)).Msg("Commands Counted")
if len(currentComands) != len(commandDefinitions) { if len(currentComands) != len(commandDefinitions) {
log.Info().Int("registered", len(currentComands)).Int("definitions", len(commandDefinitions)).Msg("Number of registered commands does not match number of command definitions, registering all commands") log.Info().Int("registered", len(currentComands)).Int("definitions", len(commandDefinitions)).Msg("Number of registered commands does not match number of command definitions, registering all commands")
return SimpleRegister(currentComands) return SimpleRegister(currentComands)