Re: Concurrent access

2012-02-23 Thread drkmkzs
ile) in order to change log file name for each > > processess ? > > Not necessarily. I don't know if log4cxx properly handles concurrent > access to the same file on a per process basis, but I personally > dislike configuring log4cxx in code and in your case it wouldn't be > nece

Re: Concurrent access

2012-02-23 Thread Thorsten Schöning
operly handles concurrent access to the same file on a per process basis, but I personally dislike configuring log4cxx in code and in your case it wouldn't be necessary, depending on what your really try to achieve with your log files. If it's just about to separate the log files of more t

Concurrent access

2012-02-22 Thread drkmkzs
7;s thread safe, but for concurrent access in the same main application (like thread or fork), not between different applications ? And i imagine a better approach would be to configure log4cxx within the code (instead property file) in order to change log file name for each processess ? Thanks