On my reading, Hugi meant that you should do something like this in Application.dispatchRequest() for the application you wrote:
@Override
public WOResponse dispatchRequest(WORequest request) {
LOG.trace(" request = " + request);
LOG.trace("request.uri() = " + request.uri());
return super.dispatchRequest(request);
}
Where LOG is a logger object of whatever type you use.