On Tue, Nov 29, 2011 at 12:23 PM, fachhoch <[email protected]> wrote: > I want to log all the pages users are viewing without any much detail > just the page class name . > is there any way I can get this without adding my own log statements in code > ?
Override on Application#init(): getRequestLoggerSettings().setRequestLoggerEnabled(true); and put the logger org.apache.wicket.protocol.http.RequestLogger to debug. -- Marcelo Morales --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
