RE: Urgent: log4cxx 0.10.0 build on HP Unix build problem

2008-05-08 Thread Chakravarthula, Krishnamurthy
-Original Message- From: Curt Arnold [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 07, 2008 9:10 PM To: Log4CXX User Subject: Re: Urgent: log4cxx 0.10.0 build on HP Unix build problem On May 7, 2008, at 9:48 AM, Chakravarthula, Krishnamurthy wrote: > I updated the Makefile.am in my ins

Individual logging output of multiple objects to multiple files

2008-05-08 Thread Michael Duerr
Hallo, I'm writing a simulation application, that creates and destroys several objects of the same class during the simulation. I want to perform logging for each of these objects to a single file (i.e. I want only the output of one object in the corresponding object's logging file). The applicat

Re: Individual logging output of multiple objects to multiple files

2008-05-08 Thread Dale King
You can certainly do it, but I wouldn't recommend it. You would create creating a new Logger instance for each instance and attaching to it a file appender unique to each instance. The overhead of object creation will be nothing compared to the overhead of creating 1 files! The question is why

Re: Individual logging output of multiple objects to multiple files

2008-05-08 Thread Curt Arnold
On May 8, 2008, at 7:12 AM, Michael Duerr wrote: Hallo, I'm writing a simulation application, that creates and destroys several objects of the same class during the simulation. I want to perform logging for each of these objects to a single file (i.e. I want only the output of one object

Re: Individual logging output of multiple objects to multiple files

2008-05-08 Thread Michael Dürr
Hi Dale and Arnold, thanks a lot for your support. The idea to log from the beginning into different files was motivated by the size a single log file would have (up to 8GB) after a single run). But actually I have not thought at all about post processing the data which probably could take qui

Re: Individual logging output of multiple objects to multiple files

2008-05-08 Thread Curt Arnold
On May 8, 2008, at 12:22 PM, Michael Dürr wrote: Hi Dale and Arnold, thanks a lot for your support. The idea to log from the beginning into different files was motivated by the size a single log file would have (up to 8GB) after a single run). But actually I have not thought at all about