projects
/
spong.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
761c84c
)
fixed error with syslog() call, removed third param
author
Stephen L Johnson
<sjohnson@monsters.org>
Mon, 17 Jun 2002 21:30:09 +0000
(21:30 +0000)
committer
Stephen L Johnson
<sjohnson@monsters.org>
Mon, 17 Jun 2002 21:30:09 +0000
(21:30 +0000)
src/lib/Spong/Logger.pm
patch
|
blob
|
history
diff --git
a/src/lib/Spong/Logger.pm
b/src/lib/Spong/Logger.pm
index c993ae871ba6f381020aab84b97ba5f21c5b9533..3e7f9e32cebf66dbbf724f90c219afbb14e91269 100755
(executable)
--- a/
src/lib/Spong/Logger.pm
+++ b/
src/lib/Spong/Logger.pm
@@
-79,7
+79,7
@@
sub log {
if ($self->{syslog}) {
openlog $self->{'ident'},$self->{'logopt'},$self->{'facility'};
- syslog $pri,$message
,''
;
+ syslog $pri,$message;
closelog;
}