diff --git a/bot/handlers.go b/bot/handlers.go index 9e94ba2..a0ac417 100644 --- a/bot/handlers.go +++ b/bot/handlers.go @@ -18,10 +18,6 @@ import ( ) func (b *bot) Receive(conn Connector, kind Kind, msg msg.Message, args ...interface{}) bool { - log.Debug(). - Interface("msg", msg). - Msg("Received event") - // msg := b.buildMessage(client, inMsg) // do need to look up user and fix it if kind == Message && strings.HasPrefix(msg.Body, "help") && msg.Command { diff --git a/connectors/discord/discord.go b/connectors/discord/discord.go index fd24b0a..0b0dabc 100644 --- a/connectors/discord/discord.go +++ b/connectors/discord/discord.go @@ -192,7 +192,6 @@ func (d *Discord) Serve() error { } func (d *Discord) messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) { - log.Debug().Msgf("discord message: %+v", m) if m.Author.ID == s.State.User.ID { return }