: I built a web application in Java/JSP, which calls a Solr Servlet during
...
: An example Debug line on my console looks like this:
: DEBUG ["http-bio-8080"-exec-1] (Wire.java:70) - << "Quick recipe finder[\n]"
...
: Are there any suggestions on how to work around with this, since the source
: of Wire.java, I guess, is not accessible?
Wire.java is not anything that comes with Solr.
a sporadic google search suggests that this message is coming from
commons-httpclient (in your client app) which uses commons-logging
I suggest you consult the docs for whatever logging framework you are
using on disabling DEBUG messages.
For example, if you are using JDK Logging...
http://download.oracle.com/javase/1.4.2/docs/guide/util/logging/overview.html
-Hoss