Don't log when checking for queued messages #46

This commit is contained in:
Noah 2024-04-16 10:22:59 -05:00
parent dea25cd2f9
commit 70fffcd25b

View File

@ -101,7 +101,6 @@ func initMatrix() {
go func() {
for range time.Tick(time.Second * 2) {
log.Printf("Scanning for queued messages...")
if len(MatrixOut) > 0 {
text := ""
for i, msg := range MatrixOut {
@ -120,7 +119,6 @@ func initMatrix() {
log.Printf("[Matrix] ERROR : %s", err)
continue
}
log.Print("[Matrix] Sent queued message(s) successfully.")
}
}
}()