RE: Re: How to remove URL form thread name?

2014-06-13 Thread Jerome Louvel
Thanks Paul for the update, great to know that you solved it! Best regards, Jerome Found it. Yes this is a Jetty feature and it is only enabled when debug logging is on.

RE: Re: How to remove URL form thread name?

2014-06-06 Thread Paul Sprague
Hi Tim, I'm using Restlet 2.2 with the jetty server connector. It would make sense I guess that this is probably a jetty feature. An example of what I'm seeing: 20140606-19:53:09.000+|qtp1327174230-143193 - /v1/accounts/deleted|rest of log message Thanks, Paul I can find only two

RE: Re: How to remove URL form thread name?

2014-06-06 Thread Jerome Louvel
Hi Paul, I suspect this is a Jetty feature as well. If you use Jetty as a Restlet Server connector, you can have access to the underlying Jetty Server object (and then its thread pool) via this class:

RE: Re: How to remove URL form thread name?

2014-06-06 Thread Paul Sprague
Found it. Yes this is a Jetty feature and it is only enabled when debug logging is on. https://github.com/eclipse/jetty.project/blob/jetty-8.1.5.v20120716/jetty-server/src/main/java/org/eclipse/jetty/server/AbstractHttpConnection.java#L417 Hi Paul, I suspect this is a Jetty feature as well.