From: Eric Wong Date: Fri, 17 Sep 2021 01:56:41 +0000 (-0500) Subject: lei refresh-mail-sync: remove "gone" notices X-Git-Tag: v1.7.0~356 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=ecc0edb4d2a1110e4c8e6aba54dd5ccf1ebb1006;p=public-inbox.git lei refresh-mail-sync: remove "gone" notices Those stderr messages are not useful at all, and harmful with the noise they cause. --- diff --git a/lib/PublicInbox/LeiRefreshMailSync.pm b/lib/PublicInbox/LeiRefreshMailSync.pm index 3c083965..71fc348c 100644 --- a/lib/PublicInbox/LeiRefreshMailSync.pm +++ b/lib/PublicInbox/LeiRefreshMailSync.pm @@ -31,14 +31,12 @@ sub prune_mdir { # lms->each_src callback } } # both tries failed - $self->{lei}->qerr("# maildir:$mdir $$id gone"); $self->{lei}->{sto}->ipc_do('lms_clear_src', "maildir:$mdir", $id); } sub prune_imap { # lms->each_src callback my ($oidbin, $uid, $self, $uids, $url) = @_; return if exists $uids->{$uid}; - $self->{lei}->qerr("# $url $uid gone"); $self->{lei}->{sto}->ipc_do('lms_clear_src', $url, $uid); }