summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2006-04-05 13:13:52 +0000
committerfukachan <fukachan>2006-04-05 13:13:52 +0000
commitca7ed2df65fe3906fbe53933227ba813c0f9e88a (patch)
tree45e54251749dc0f23084dcb4c5b412312d576cad
parent0a484a84a82187d0abbd4d062d368552f1b83e7b (diff)
downloadfml8-ca7ed2df65fe3906fbe53933227ba813c0f9e88a.tar.gz
fml8-ca7ed2df65fe3906fbe53933227ba813c0f9e88a.tar.bz2
fml8-ca7ed2df65fe3906fbe53933227ba813c0f9e88a.zip
mask some debug messages
-rw-r--r--fml/lib/Mail/Delivery/Queue.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/Mail/Delivery/Queue.pm b/fml/lib/Mail/Delivery/Queue.pm
index de15353f..c82df2b9 100644
--- a/fml/lib/Mail/Delivery/Queue.pm
+++ b/fml/lib/Mail/Delivery/Queue.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Queue.pm,v 1.64 2006/04/04 12:58:49 fukachan Exp $
+# $FML: Queue.pm,v 1.65 2006/04/05 08:36:28 fukachan Exp $
#
package Mail::Delivery::Queue;
@@ -735,7 +735,7 @@ sub lock
if (defined $io) {
my $r = $io->lock( { wait => $wait } );
if ($r) {
- $self->_log("debug: got lock qid=$id");
+ $self->_logdebug("got lock qid=$id");
$self->{ _lock }->{ $id } = $io;
}
else {
@@ -764,7 +764,7 @@ sub unlock
if (defined $io) {
my $r = $io->unlock();
- $self->_log("debug: got unlock qid=$id");
+ $self->_logdebug("got unlock qid=$id");
return $r;
}
else {