Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to see what Wicket is trying to do while rendering a page, in logs? For example, something like:

...
trying to render component A
getting data from model for component A
...

and so on.

share|improve this question
Just use a debugger. Even if possible (and I don't think it is), this level of logging would get really verbose, making it completely useless. – tetsuo Jan 13 '11 at 0:33
or profiler if you're trying to figure out memory or performance problems and such – Eelco Feb 24 '11 at 17:33

1 Answer

up vote 5 down vote accepted

set the logging level in your log config/properties file for package org.apache.wicket to debug or trace. You will see hundreds of lines of logs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.