On Fri, 2 Nov 2007, Jeff McCarrell wrote:
> I'm using log4perl in the obvious way. We have reqs to set the mode
> of the log file to 0666.
> log4perl.appender.PUSHD.filename=/tmp/pushd.log
> log4perl.appender.PUSHD.mode=append
> log4perl.appender.PUSHD.permissions
> = S_IRUSR|S_IWUSR|S_IRGRP|S_IW
On Fri, 2 Nov 2007, Bob Strahan wrote:
> However, it seems that if certain filesystem operations are
> performed on the logfile it can cause the logger to execute die(),
> causing my service to die, with the following error
>
> Cannot write to 'D:/Program Files (x86)/My App/logs/logfile.txt':
> Pe
From: Jonathan Swartz <[EMAIL PROTECTED]>
To: [email protected]
Subject: appender/dispatcher that writes to per-category files
Date: Thu, 1 Nov 2007 17:00:36 -0700
I'd like to write simultaneously to a central log file, and to a
separate log file for each category. e.g. A log to
On Sat, 3 Nov 2007, Mike Schilli wrote:
> I'd like to write simultaneously to a central log file, and to
> a separate log file for each category. e.g. A log to category Foo.Bar
> would go to app.log and Foo.Bar.log. I want to do this automatically
> rather than having to configure each category se