mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-08-09 15:54:56 +02:00
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.
This commit is contained in:
@ -6,7 +6,7 @@ _p = None
|
|||||||
def start_syslog():
|
def start_syslog():
|
||||||
global _p
|
global _p
|
||||||
_p = ssubprocess.Popen(['logger',
|
_p = ssubprocess.Popen(['logger',
|
||||||
'-p', 'daemon.info',
|
'-p', 'daemon.notice',
|
||||||
'-t', 'sshuttle'], stdin=ssubprocess.PIPE)
|
'-t', 'sshuttle'], stdin=ssubprocess.PIPE)
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user