Lines Matching refs:syslog
3 syslog = support.import_module("syslog") #skip if not supported variable
13 syslog.openlog('python')
15 self.assertRaises(UnicodeEncodeError, syslog.openlog, '\uD800')
18 syslog.openlog('python')
19 syslog.syslog('test message from python test_syslog')
20 syslog.syslog(syslog.LOG_ERR, 'test error from python test_syslog')
23 syslog.openlog('python')
24 syslog.closelog()
27 syslog.setlogmask(syslog.LOG_DEBUG)
30 syslog.LOG_MASK(syslog.LOG_INFO)
33 syslog.LOG_UPTO(syslog.LOG_INFO)
36 syslog.openlog()
37 syslog.syslog('test message from python test_syslog')