Using the logging api included in 1.1.0, how do you control log output at the object level?
In otherwords, in a single JVM I will have multiple instances of SSLFTPClient and FTPClient objects. I am using Level.DEBUG, because that gives the desired output. In addition, I will setup a unique FileAppender for each SSLFTPClient/FTPClient object, and I need the output of each to go to the appropriate log file.
From the looks of the API, it appears that everything is at a class level and not an object level. Is this the case?
As you can well imagine, a single log file with the output from even several concurrent FTP sessions is a nightmare to trace through.
Thanks,
Steve