projects
/
interimap.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c5f813
)
Net::IMAP::InterIMAP: don't print undefined cache values in debug messages.
author
Guilhem Moulin
<guilhem@fripost.org>
Wed, 9 Mar 2016 20:14:40 +0000
(21:14 +0100)
committer
Guilhem Moulin
<guilhem@fripost.org>
Wed, 9 Mar 2016 20:14:40 +0000
(21:14 +0100)
lib/Net/IMAP/InterIMAP.pm
patch
|
blob
|
history
diff --git
a/lib/Net/IMAP/InterIMAP.pm
b/lib/Net/IMAP/InterIMAP.pm
index bad49da3e91b52276c5e282db1731aa4cd5dbf43..73f55e891bd2c43a328d9da4207303d11cee628e 100644
(file)
--- a/
lib/Net/IMAP/InterIMAP.pm
+++ b/
lib/Net/IMAP/InterIMAP.pm
@@
-1027,7
+1027,7
@@
sub set_cache($$%) {
}
$self->logger("Update last clean state for $mailbox: ".
- '('.join(' ', map {"$_ $cache->{$_}"} keys %$cache).')')
+ '('.join(' ', map {"$_ $cache->{$_}"}
grep {defined $cache->{$_}}
keys %$cache).')')
if $self->{debug};
}