[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Sorry, I've read your first reply too fast and incorrectly interpreted it as recommendation to use stream handler with /dev/log. Anyway, thank you for clarification. -- ___ Python tracker

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Vinay Sajip
Vinay Sajip added the comment: Why would you want to use a single handler instance against multiple loggers? It's safe to do so, but you could get duplicated messages appearing. I presume you have reviewed the documentation and are aware that loggers are organised in a hierarchy and that in the

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Is it safe to use single handler instance in multiple loggers or single stream in multiple handlers? -- ___ Python tracker ___ __

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Vinay Sajip
Vinay Sajip added the comment: As the docstring and documentation says, you can use SysLogHandler("/dev/log") or similar to connect to a local syslog using Unix domain sockets rather than UDP. Doesn't this work for you? -- ___ Python tracker

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Can I vote for this issue? Many systems with syslog aren't configured to listen on UDP socket and thus out of the box SysLogHandler does not work. -- nosy: +LwarX ___ Python tracker

[issue1711603] syslog syscall support for SysLogLogger

2009-05-20 Thread David Andrzejewski
Changes by David Andrzejewski : -- title: syslog syscall support for SysLogLogger -> logging -> syslog syscall support for SysLogLogger ___ Python tracker ___

[issue1711603] syslog syscall support for SysLogLogger -> logging

2009-05-20 Thread David Andrzejewski
Changes by David Andrzejewski : -- title: logging -> syslog syscall support for SysLogLogger -> logging versions: -Python 2.5 ___ Python tracker ___ __

[issue1711603] syslog syscall support for SysLogLogger

2007-09-26 Thread Luke-Jr
Luke-Jr added the comment: So label it a "design flaw" if not a bug. Syscalls are the primary and only guaranteed method of writing to the system log. Very few applications or users use sockets for syslog, and socket supp

[issue1711603] syslog syscall support for SysLogLogger

2007-09-26 Thread Vinay Sajip
Vinay Sajip added the comment: It's only a bug when it doesn't work according to design. The present design seems adequate in that it allows syslogging via UDP or domain sockets. No one else has asked for the functionality of using system calls. BTW I note that Metalog's home page says it's a mod