Yep...I'm planning on using SysLogHandler. Although if I were to use
rsyslog, for example, I might potentially be better off using tcp or
even doing it using rfc 3195. Sysloghandler uses udp...I imagine that
will be faster but with less reliability. I'll have to think about
that. Has anyone imp
Sam> I've been playing with the python logging module. I'd like all of
Sam> these applications to write their logs to the same place in order
Sam> to make analysis easier.
Sam> Any ideas on best practices?
Perhaps use logging.handlers.SysLogHandler?
Sam> What are my options
Hi...
I'm working with a small team writing a bunch of python applications
that communicate via xml/http in a somewhat restful way. :) They are
running on about half a dozen computers. We'll probably be scaling
that to a lot more computers soon.
I've been playing with the python logging module