Skip to content

Commit

Permalink
ssyslog.py: use daemon.notice instead of daemon.info
Browse files Browse the repository at this point in the history
...MacOS X seems to default (in /etc/syslog.conf) to not logging daemon.info
anywhere.  That kind of defeats the purpose, I think.
  • Loading branch information
apenwarr committed Jan 1, 2011
1 parent e6d7c44 commit 95ab6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssyslog.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def start_syslog():
global _p
_p = ssubprocess.Popen(['logger',
'-p', 'daemon.info',
'-p', 'daemon.notice',
'-t', 'sshuttle'], stdin=ssubprocess.PIPE)


Expand Down

0 comments on commit 95ab6e7

Please sign in to comment.