diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-17 23:32:48 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-17 23:32:48 +0000 |
commit | 50a9ef47538666c565c26ad7125a9e6484330cfd (patch) | |
tree | 1ed61762937ded9c473db132c54cd6ceccde48c5 /IkiWiki/Setup | |
parent | 44820713d3a96f40a7a1cccc5ede73a3973bebcc (diff) |
* Make ikiwiki -verbose -setup with a setup file that enabled syslog logging
output the verbose build log to stdout, rather than to the syslog.
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index f3f7bae5a..c279e6451 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -45,6 +45,7 @@ sub setup_standard { } foreach my $c (keys %setup) { + next if $c eq 'syslog'; if (defined $setup{$c}) { if (! ref $setup{$c}) { $config{$c}=possibly_foolish_untaint($setup{$c}); |