diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2009-04-09 11:38:24 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2009-04-09 11:38:24 -0700 |
commit | 912f05a194d87db8bcfdb77495a116cbec0a69fc (patch) | |
tree | 976bb03c0c83474c0c26899c8d0c7ed6056951dd | |
parent | 3625041224e9603a9d8f7feff7d5ed33b6f50f81 (diff) | |
download | vyatta-cfg-912f05a194d87db8bcfdb77495a116cbec0a69fc.tar.gz vyatta-cfg-912f05a194d87db8bcfdb77495a116cbec0a69fc.zip |
Bugfix 4272: Set log level to "notice" so messages are logged by default.
-rwxr-xr-x | scripts/vyatta-config-loader.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-config-loader.pl b/scripts/vyatta-config-loader.pl index 635ae37..35ca145 100755 --- a/scripts/vyatta-config-loader.pl +++ b/scripts/vyatta-config-loader.pl @@ -29,7 +29,7 @@ use Vyatta::ConfigLoad; umask 0002; if (!open(OLDOUT, ">&STDOUT") || !open(OLDERR, ">&STDERR") - || !open(STDOUT, "|/usr/bin/logger -t config-loader -p local0.debug") + || !open(STDOUT, "|/usr/bin/logger -t config-loader -p local0.notice") || !open(STDERR, ">&STDOUT")) { print STDERR "Cannot dup STDOUT/STDERR: $!\n"; exit 1; |