fixed error with syslog() call, removed third param
authorStephen L Johnson <sjohnson@monsters.org>
Mon, 17 Jun 2002 21:30:09 +0000 (21:30 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Mon, 17 Jun 2002 21:30:09 +0000 (21:30 +0000)
src/lib/Spong/Logger.pm

index c993ae871ba6f381020aab84b97ba5f21c5b9533..3e7f9e32cebf66dbbf724f90c219afbb14e91269 100755 (executable)
@@ -79,7 +79,7 @@ sub log {
 
    if ($self->{syslog}) {
       openlog $self->{'ident'},$self->{'logopt'},$self->{'facility'};
-      syslog $pri,$message,'';
+      syslog $pri,$message;
       closelog;
    }