vote up 1 vote down star

I have a huge ear that uses log4j and there is a single config file that is used to set it up. In this config file there is no mention of certain log files but, additional files apart from those specified in the config file get generated in the logs folder. I've searched for other combinations of (logger|log4j|log).(properties|xml) and haven't found anything promising in all of the jar files included in the ear. How do I track down which is the offending thread/class that is creating these extra files?

flag
What app server are you running? And what files are being created? – sblundy Sep 15 '08 at 18:09
WAS 6.1 and apart from appName-(error|info|debug).log there are error.log and debug.log – shyamsundar Sep 15 '08 at 18:10
Hmm, you might want to tag your post with websphere & was. See if any experts in those have any suggestions. – sblundy Sep 15 '08 at 18:15
thx. good idea :) will do that – shyamsundar Sep 15 '08 at 18:17

5 Answers

vote up 0 vote down check

Try placing a breakpoint in the File class' constructors and the mkdir and createNewFile methods. Generally, code will use the File class to create its files or directories. You should have the Java source code for these classes included with your JVM.

link|flag
It took a lot of time hitting F8 but I tracked it down :) thx – shyamsundar Sep 25 '08 at 18:46
Sometimes, that's the only way to get it done :) – MetroidFan2002 Sep 27 '08 at 17:34
vote up 2 vote down

Add "-Dlog4j.debug" to the command line and there will be extra info in standard output about how it is configured.

link|flag
vote up 0 vote down

SysInternals may not help with Java class IO. Try getting a thread dump of the JVM (e.g., kill -3) while these logs are being written to. You should be able to catch a thread red handed with java.io packages near the top of the stack trace.

link|flag
vote up 0 vote down

Formally SysInternal's, now Microsoft's Process Explorer http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

"Find" menu item -> "Find Handle or DLL..."

link|flag
Already tried that :( But, when I search from the appserver's java process all files and directories I see are of those of the appserver itself my log directory doesn't figure in those. btw i'm using WAS 6.1. But, I plan to take a deeper look into procexp – shyamsundar Sep 15 '08 at 18:09
vote up 0 vote down

Have you tried looking in your app server config? In JBoss, look in %JBOSS_HOME%/server/%INSTANCE_DIR%/conf/jboss-log4j.xml.

link|flag
definitely not from the appserver configuration as the config file is loaded separately and the logs dir is nowhere near the appservers default log dir – shyamsundar Sep 15 '08 at 18:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.