I maintain an Eclipse plug-in that was written for Eclipse 3.2. This plug-in writes information, warnings, and errors to the Eclipse .log file using the org.eclipse.core.runtime.Status
class
When I run the Eclipse plug-in from within the development Eclipse, with the run configuration of Eclipse Application, the plug-in works fine. The information, warnings, and errors are written to the Eclipse .log file.
When I package the Eclipse plug-in, and install it in another Eclipse, the information messages aren't written to the .log file. The warnings and errors are written.
I'm assuming there's some error level logging configuration setting in the Eclipse run configuration that I'm missing when I package the Eclipse plug-in. I've looked through the Eclipse help and done some Google searches, but I haven't found an answer.
Is there an error level logging configuration setting in Eclipse that I can set when I package my Eclipse plug-in?