diff --git a/pkg/bot/bot.go b/pkg/bot/bot.go index 0cd83cb..590dbe0 100644 --- a/pkg/bot/bot.go +++ b/pkg/bot/bot.go @@ -221,6 +221,7 @@ func (b *Type) periodicTicker() { log.Println("Checking for conversations") pm, _ := b.avr.FetchPendingConversations() if len(pm) > 0 { + log.Printf("Found %d new messages\n", len(pm)) b.handleNewPendingConversation(pm) } checkConversations.Reset(tickerIntervalCheckIncomingConversations * time.Minute)