If you build a Java extension using Ant then the generated Java archive will not report the line numbers in the traces.
Default debug option for Ant is -g:none
Default debug option for javac is -g:{lines,vars,source}
It seems to me preferable that Ant follows the javac options, namely to obtain traces with the line number of the source code.
If you build a Java extension using Ant then the generated Java archive will not report the line numbers in the traces.
Default debug option for Ant is
-g:noneDefault debug option for javac is
-g:{lines,vars,source}It seems to me preferable that Ant follows the javac options, namely to obtain traces with the line number of the source code.