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

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

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