Update syslog_json.py

localhost is better than locahost ;)
pull/4420/head
Vebryn 2015-06-16 16:13:01 +02:00
parent c87591f76f
commit b1574ecfce
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class CallbackModule(object):
self.logger.setLevel(logging.DEBUG)
self.handler = logging.handlers.SysLogHandler(
address = (os.getenv('SYSLOG_SERVER','locahost'),
address = (os.getenv('SYSLOG_SERVER','localhost'),
os.getenv('SYSLOG_PORT',514)),
facility=logging.handlers.SysLogHandler.LOG_USER
)