I would like to redirect the log messages coming from different applications to different files, specifying the file names in the configuration file, instead of in my program itself. The configuration file should look some thing like this...
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
com.xyz.foo.level = SEVERE
com.xyz.foo.file = file1.log
com.xyz.abc.file = file2.log
Pl. suggest me a way
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
com.xyz.foo.level = SEVERE
com.xyz.foo.file = file1.log
com.xyz.abc.file = file2.log
Pl. suggest me a way