Re: [rotatingloghandler]: How to read the logs produced ?

2011-01-19 Thread Michael Ricordeau
I suggest SyslogHandler in logging package to centralize all logs . http://docs.python.org/library/logging.html#sysloghandler In my opinion, rotating, parsing, filtering logs is a different task (for a sysadmin not a developper). I'm doing this for all my projects at work : - using

[rotatingloghandler]: How to read the logs produced ?

2011-01-18 Thread low kian seong
Dear people, I am currently using concurrentrotatingfilehandler to handle my Python logs. The situation is okay when it's only one log, but when it needs to spill over to the next log (I configured to have 2) say test.log.2 then I see that the output is sort of shared between the first log

Re: [rotatingloghandler]: How to read the logs produced ?

2011-01-18 Thread Chris Rebert
On Tue, Jan 18, 2011 at 10:02 PM, low kian seong kianseong@logisticsconsulting.asia wrote: Dear people, I am currently using concurrentrotatingfilehandler to handle my Python logs. The situation is okay when it's only one log, but when it needs to spill over to the next log (I configured

Re: [rotatingloghandler]: How to read the logs produced ?

2011-01-18 Thread Low Kian Seong
(iphone) On Jan 19, 2011, at 3:25 PM, Chris Rebert c...@rebertia.com wrote: On Tue, Jan 18, 2011 at 10:02 PM, low kian seong kianseong@logisticsconsulting.asia wrote: Dear people, I am currently using concurrentrotatingfilehandler to handle my Python logs. The situation is okay when

Re: [rotatingloghandler]: How to read the logs produced ?

2011-01-18 Thread Chris Rebert
On Tue, Jan 18, 2011 at 11:27 PM, Low Kian Seong kianseong@lcalink.com wrote: On Jan 19, 2011, at 3:25 PM, Chris Rebert c...@rebertia.com wrote: On Tue, Jan 18, 2011 at 10:02 PM, low kian seong kianseong@logisticsconsulting.asia wrote: Dear people, I am currently using