diff options
author | Russ Allbery <rra@stanford.edu> | 2008-02-07 22:46:24 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2008-02-07 22:46:24 +0000 |
commit | 39486ab6939e9005f9eaf7eb0d7cac30a82ff6ea (patch) | |
tree | da166ab990bd5233a6a5fff3388f3ce09d9ee2bc /server | |
parent | b7e0a97006e7f55d4593608c67ee31fe140738c4 (diff) |
Correctly enable syslog logging in wallet-backend.
Diffstat (limited to 'server')
-rwxr-xr-x | server/wallet-backend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/wallet-backend b/server/wallet-backend index 4a0b5cf..1a259d5 100755 --- a/server/wallet-backend +++ b/server/wallet-backend @@ -19,7 +19,7 @@ use Wallet::Server; # Set to zero to suppress syslog logging, which is used only for testing. Set # to a reference to a string to append messages to that string instead. our $SYSLOG; -$SYSLOG = 0 unless defined $SYSLOG; +$SYSLOG = 1 unless defined $SYSLOG; ############################################################################## # Logging |