diff options
| author | William Hergès <william@herges.fr> | 2025-09-27 17:34:38 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-09-27 17:34:38 +0200 |
| commit | cfdba5f417bb31aac564d13becc09874f17d075d (patch) | |
| tree | 5f79f01bdab1fae108ca93be05e2c7fd8898bc08 /commands/config.go | |
| parent | dca669455f4746666fd3a1177a4db2eaa5320cb7 (diff) | |
build(gokord): bump to latest nightly
Diffstat (limited to 'commands/config.go')
| -rw-r--r-- | commands/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/config.go b/commands/config.go index 7ffd4af..336e66a 100644 --- a/commands/config.go +++ b/commands/config.go @@ -130,7 +130,7 @@ func ConfigCommand( err := s.InteractionAPI().Respond(i.Interaction, ConfigResponse(i)) if err != nil { - s.LogError(err, "config/guild.go - Sending config") + s.Logger().Error("sending config", "error", err) } } @@ -145,7 +145,7 @@ func ConfigMessageComponent( err := s.InteractionAPI().Respond(i.Interaction, response) if err != nil { - s.LogError(err, "sending config") + s.Logger().Error("sending config", "error", err) } } @@ -160,6 +160,6 @@ func ConfigModal( err := s.InteractionAPI().Respond(i.Interaction, response) if err != nil { - s.LogError(err, "sending config") + s.Logger().Error("sending config", "error", err) } } |
