I want to include an external library in my Java project, and this library in particular uses Apache Commons Logging to write messages to the logging system. The library writes a lot of messages of level "info", causing a lot of useless entries in the logs.
My application is supposed to be deployed and executed in a shared environment (for example, tomcat or jetty). My question is, what options do I have to configure the log level for this library if I cannot rely on properties/xml configuration files?