| Author |
Logging in a jar
|
Gabriel Beres
Ranch Hand
Joined: Sep 09, 2006
Posts: 55
|
|
Hi! I using log4j, to log my inner workings of my code. My problem is, when my codes are in a jar file, log4j can't figure out the exact line number, where an event has happened for example: java.lang.Exception at my.package.MyClass.myMethod(Unknown Source) In eclipse, there are no problem, because the source files are there. How can i attach sources to a jar file, so log4j could find the exact line? Thanks
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8264
|
|
|
Take a look at the compiler documentation and look for the "-g" options. They add debug information to generated class files.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
Gabriel Beres
Ranch Hand
Joined: Sep 09, 2006
Posts: 55
|
|
Thanks Joe! javac -g works great.
|
 |
 |
|
|
subject: Logging in a jar
|
|
|