Hello, I am writing a clustering component for Solr. It registers, loads and
works properly. However, whenever there is an exception inside my plugin, I
cannot get tomcat to show me the line numbers. It always says "Unknown source"
for my classes. The stack trace in tomcat shows line numbers for everything up
to org.apache.solr.handler.component.SearchHandler class, but after that it
shows my class names without line numbers. My compiler in ant build file is set
to include debug info:
<javacdestdir="${build.classes}"debug="true"debuglevel="lines, vars, and
source">
Any ideas what I am missing ?
Greg