--- lib/Qpsmtpd/TcpServer.pm.smtp-loginfo Wed Oct 4 15:49:49 2006 +++ lib/Qpsmtpd/TcpServer.pm Sun Nov 5 15:41:31 2006 @@ -61,7 +61,7 @@ while () { alarm 0; $_ =~ s/\r?\n$//s; # advanced chomp - $self->log(LOGDEBUG, "dispatching $_"); + $self->log(LOGINFO, "dispatching $_"); $self->connection->notes('original_string', $_); defined $self->dispatch(split / +/, $_, 2) or $self->respond(502, "command unrecognized: '$_'"); @@ -75,7 +75,7 @@ my $buf = ''; while (my $msg = shift @messages) { my $line = $code . (@messages?"-":" ").$msg; - $self->log(LOGDEBUG, $line); + $self->log(LOGINFO, $line); $buf .= "$line\r\n"; } print $buf or ($self->log(LOGERROR, "Could not print [$buf]: $!"), return 0); @@ -84,7 +84,7 @@ sub disconnect { my $self = shift; - $self->log(LOGDEBUG,"click, disconnecting"); + $self->log(LOGINFO,"click, disconnecting"); $self->SUPER::disconnect(@_); $self->run_hooks("post-connection"); exit;