N
Nicholas Milkovits
Hello all,
I have a small script which attempts to write to the user.log syslog
import logging, logging.handlers
logger = logging.getLogger('bender')
handler = logging.handlers.SysLogHandler(('localhost',
logging.handlers.SYSLOG_UDP_PORT),
logging.handlers.SysLogHandler.LOG_USER)
formatter = logging.Formatter('%(filename)s: %(levelname)s: %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler)
logger.error('what')
but no log entries show up, however if I use the syslog module as such:
everything works fine. I am not sure what I am doing wrong. Any help
would be appreciated.
Thanks,
Nick
I have a small script which attempts to write to the user.log syslog
import logging, logging.handlers
logger = logging.getLogger('bender')
handler = logging.handlers.SysLogHandler(('localhost',
logging.handlers.SYSLOG_UDP_PORT),
logging.handlers.SysLogHandler.LOG_USER)
formatter = logging.Formatter('%(filename)s: %(levelname)s: %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler)
logger.error('what')
but no log entries show up, however if I use the syslog module as such:
everything works fine. I am not sure what I am doing wrong. Any help
would be appreciated.
Thanks,
Nick