summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvery Pennarun <apenwarr@gmail.com>2011-01-01 00:28:31 -0800
committerAvery Pennarun <apenwarr@gmail.com>2011-01-01 00:28:31 -0800
commit95ab6e71192fcbd35790b2dae00846934c953aef (patch)
treecf2f94d4c899c0d160bc8066f5f7dcdd57a6f59f
parente6d7c44e277080347cfa95e56b285f5aa08bb97a (diff)
ssyslog.py: use daemon.notice instead of daemon.info
...MacOS X seems to default (in /etc/syslog.conf) to not logging daemon.info anywhere. That kind of defeats the purpose, I think.
-rw-r--r--ssyslog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssyslog.py b/ssyslog.py
index 9958c9d..0fa768c 100644
--- a/ssyslog.py
+++ b/ssyslog.py
@@ -6,7 +6,7 @@ _p = None
def start_syslog():
global _p
_p = ssubprocess.Popen(['logger',
- '-p', 'daemon.info',
+ '-p', 'daemon.notice',
'-t', 'sshuttle'], stdin=ssubprocess.PIPE)