diff options
Diffstat (limited to 'worker/imap/checkmail.go')
-rw-r--r-- | worker/imap/checkmail.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/worker/imap/checkmail.go b/worker/imap/checkmail.go index 57af3af5..21f2e4bb 100644 --- a/worker/imap/checkmail.go +++ b/worker/imap/checkmail.go @@ -1,6 +1,7 @@ package imap import ( + "git.sr.ht/~rjarry/aerc/logging" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" "github.com/emersion/go-imap" @@ -13,7 +14,7 @@ func (w *IMAPWorker) handleCheckMailMessage(msg *types.CheckMail) { imap.StatusUnseen, } for _, dir := range msg.Directories { - w.worker.Logger.Printf("Getting status of directory %s", dir) + logging.Debugf("Getting status of directory %s", dir) status, err := w.client.Status(dir, items) if err != nil { w.worker.PostMessage(&types.Error{ |