t5: turning off logging for jetty

View: New views
7 Messages — Rating Filter:   Alert me  

t5: turning off logging for jetty

by Angelo Chen :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

Sorry if this is not T5 related, just looking for a quick solution. when testing t5 app in jetty, the logs shows a lot of http requests like:
127.0.0.1 -  -  [29/Jun/2009:00:59:30 +0000] "GET /assets/ctx/3ebed60239...
is there a way to turn this off? Thanks,

Angelo

Re: t5: turning off logging for jetty

by Thiago H. de Paula Figueiredo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sun, Jun 28, 2009 at 10:01 PM, Angelo Chen<angelochen960@...> wrote:
> Hi,

Hi!

> Sorry if this is not T5 related, just looking for a quick solution. when
> testing t5 app in jetty, the logs shows a lot of http requests like:
> 127.0.0.1 -  -  [29/Jun/2009:00:59:30 +0000] "GET /assets/ctx/3ebed60239...
> is there a way to turn this off? Thanks,

This is a Jetty issue, not a Tapestry one.

--
Thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: t5: turning off logging for jetty

by Szemere Szemere :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

If found this Jetty Q affected my Tapestry experience. To fix it, I
commented out, the requestLog tag in the standard Tapestry POM, which
starts:
<requestLog implementation="org.mortbay.jetty.NCSARequestLog">

HTH,
Szemere

Re: t5: turning off logging for jetty

by P.Stavrinides :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thats a great tip! thanks a lot! I sure wish all these little tips and tricks were documented somewhere.

cheers,
Peter
----- Original Message -----
From: "Szemere Szemere" <szemereszemere@...>
To: "Tapestry users" <users@...>
Sent: Monday, 29 June, 2009 15:57:03 GMT +02:00 Athens, Beirut, Bucharest, Istanbul
Subject: Re: t5: turning off logging for jetty

If found this Jetty Q affected my Tapestry experience. To fix it, I
commented out, the requestLog tag in the standard Tapestry POM, which
starts:
<requestLog implementation="org.mortbay.jetty.NCSARequestLog">

HTH,
Szemere

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: t5: turning off logging for jetty

by Martin Strand-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The Jetty plugin is well documented:
http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin

Here's another tip that might be interesting if you're using Windows:
http://docs.codehaus.org/display/JETTY/Files+locked+on+Windows

On Mon, 29 Jun 2009 15:38:49 +0200, Peter Stavrinides <P.Stavrinides@...> wrote:

> Thats a great tip! thanks a lot! I sure wish all these little tips and tricks were documented somewhere.
>
> cheers,
> Peter
> ----- Original Message -----
> From: "Szemere Szemere" <szemereszemere@...>
> To: "Tapestry users" <users@...>
> Sent: Monday, 29 June, 2009 15:57:03 GMT +02:00 Athens, Beirut, Bucharest, Istanbul
> Subject: Re: t5: turning off logging for jetty
>
> If found this Jetty Q affected my Tapestry experience. To fix it, I
> commented out, the requestLog tag in the standard Tapestry POM, which
> starts:
> <requestLog implementation="org.mortbay.jetty.NCSARequestLog">
>
> HTH,
> Szemere

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: t5: turning off logging for jetty

by P.Stavrinides :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> Here's another tip that might be interesting if you're using Windows:
thankfully I am not, but that is a nice catch.

Peter

----- Original Message -----
From: "Martin Strand" <do.not.eat.yellow.snow@...>
To: "Tapestry users" <users@...>
Sent: Monday, 29 June, 2009 16:55:47 GMT +02:00 Athens, Beirut, Bucharest, Istanbul
Subject: Re: t5: turning off logging for jetty

The Jetty plugin is well documented:
http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin

Here's another tip that might be interesting if you're using Windows:
http://docs.codehaus.org/display/JETTY/Files+locked+on+Windows

On Mon, 29 Jun 2009 15:38:49 +0200, Peter Stavrinides <P.Stavrinides@...> wrote:

> Thats a great tip! thanks a lot! I sure wish all these little tips and tricks were documented somewhere.
>
> cheers,
> Peter
> ----- Original Message -----
> From: "Szemere Szemere" <szemereszemere@...>
> To: "Tapestry users" <users@...>
> Sent: Monday, 29 June, 2009 15:57:03 GMT +02:00 Athens, Beirut, Bucharest, Istanbul
> Subject: Re: t5: turning off logging for jetty
>
> If found this Jetty Q affected my Tapestry experience. To fix it, I
> commented out, the requestLog tag in the standard Tapestry POM, which
> starts:
> <requestLog implementation="org.mortbay.jetty.NCSARequestLog">
>
> HTH,
> Szemere

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: t5: turning off logging for jetty

by Angelo Chen :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks, it works! and I have a very clean console. it's not t5 related, however it really helps t5 programmers.

Szemere Szemere wrote:
If found this Jetty Q affected my Tapestry experience. To fix it, I
commented out, the requestLog tag in the standard Tapestry POM, which
starts:
<requestLog implementation="org.mortbay.jetty.NCSARequestLog">

HTH,
Szemere