2012/2/15 Marcel Stör <mar...@frightanic.com>:
> On 14.02.2012 22:57, Christopher Schultz wrote:
>>>
>>> In one of my Eclipse/WTP projects Tomcat logs each request (before
>>> >  and after):
>>> >
>>> >  ... 13.02.2012 20:50:47 org.apache.catalina.core.ApplicationContext
>>> >  log INFO: After request
>>> >  [uri=/demo-webmvc-web/scripts/libs/jquery/jquery-1.6.4.min.js?null]
>>> >
>>> >
>>
>> 13.02.2012 20:50:47 org.apache.catalina.core.ApplicationContext log
>>>
>>> >  INFO: Before request [uri=/demo-webmvc-web/images/logo.gif?null]
>>> >  13.02.2012 20:50:47 org.apache.catalina.core.ApplicationContext
>>> >  log INFO: After request
>>> >  [uri=/demo-webmvc-web/images/logo.gif?null] ...
>>> >
>>> >  How do I get rid of this?
>>
>> That depends. In what log file does this appear? What version of
>> Tomcat are you using?
>
>
> I see those statements in the Eclipse console (sys error) and I'm using
> Tomcat 7.0.19. Sorry, this was crucial information I forget to provide.
>

You have to look at the JVM arguments that are used to launch Tomcat.

That should be on the Servers view -> click the server there so that
it opens some pretty page with its configuration. On that page there
will be a link to "launch configuration". Click it and see that it
displays.

You have to look for
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
and
-Djava.util.logging.config.file= <some path>

If there is no "-Djava.util.logging.manager" setting then the logging
is done by your JRE, not by Tomcat.

If it is there, then you will see what configuration file it uses.

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to