vote up 1 vote down star

My java app keeps crashing the jvm every time its closed.
I think the crashes are caused by a third party dll im using, so i cant fix them.
The problem is that a hs_err _pid.log log file is created on every crash, filling the CWD.
Can be jvm crash logging disabled? Is there a way to do that from inside the running java app?
Thanks!

flag

Which JVM version? – skaffman Jun 21 at 22:25
Sorry, the VM version is 14.0-b16 – Gero Jun 21 at 22:34
Sorry, I phrased that poorly, that's the VM build version. Which java version is it? – skaffman Jun 21 at 22:43
Looks like that java6, so my answer below should be useful. – skaffman Jun 21 at 22:46
Effectively its java6, your Answer is correct. – Gero Jun 21 at 22:51

1 Answer

vote up 1 vote down check

In java 6, you can use the -XX:ErrorFile option to control where the file goes. I'm not sure if you can turn it off, but you probably direct it to /dev/null

http://java.sun.com/javase/6/webnotes/trouble/TSG-Desktop/html/felog.html

link|flag
Thanks a lot! That solves partially my problem, i will redirect log files to temp folder in windows xD – Gero Jun 21 at 22:46

Your Answer

Get an OpenID
or

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