corsiKa
corsiKa

Reputation: 82559

What do the columns in the restlet log mean?

When I run a Restlet application, I see a log message when I hit the server. Here's a small sample (I've added a couple line breaks, where log message doesn't have them):

Dec 6, 2012 9:16:54 AM org.restlet.engine.log.LogFilter afterHandle
INFO: 2012-12-06    09:16:54    127.0.0.1   -   -   41020   POST
/act/login  -   200 32  85  2   
http://127.0.0.1:41020  Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11    
http://127.0.0.1:41020/

Now clearly I'm able to identify some of these columns.

The first says what generates the log message, LogFilter.afterHandle, but trying to wade through that was incredibly cryptic and got me nowhere.

The logging line:

I've searched Restlet's documentation, waded through the code, and did oodles and oodles of Googles, but my search is, as yet, fruitless.

Could someone provide some insight as to what these dashes and magic numbers mean?

Upvotes: 0

Views: 1184

Answers (1)

Jerome Louvel
Jerome Louvel

Reputation: 2892

This is related to Restlet's LogService, which relies by default on JULI (java.util.logging mechanism).

See more info here: https://restlet.talend.com/documentation/user-guide/2.4/core/services/log

Upvotes: 2

Related Questions