[
https://issues.apache.org/jira/browse/WICKET-2139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Juergen Donnerstag resolved WICKET-2139.
----------------------------------------
Resolution: Fixed
Fix Version/s: 1.4-RC3
has been fixed by Igor already
> RequestLogger change - include Page Parameters for BookmarkablePages
> --------------------------------------------------------------------
>
> Key: WICKET-2139
> URL: https://issues.apache.org/jira/browse/WICKET-2139
> Project: Wicket
> Issue Type: Improvement
> Components: wicket
> Affects Versions: 1.3.5, 1.4-RC2
> Reporter: Alex Parvulescu
> Assignee: Igor Vaynberg
> Priority: Trivial
> Fix For: 1.4-RC3
>
> Original Estimate: 0.02h
> Remaining Estimate: 0.02h
>
> From the dev-list:
> http://www.nabble.com/RequestLogger-change---include-Page-Parameters-for-BookmarkablePages-td22295982.html
> Can you please add page parameters to the IRequestTarget logging ?
> Its a simple addition to
> org.apache.wicket.protocol.http.RequestLogger#getRequestTargetString(IRequestTarget
> target) :
> so this
> else if (target instanceof IBookmarkablePageRequestTarget)
> {
> IBookmarkablePageRequestTarget pageRequestTarget =
> (IBookmarkablePageRequestTarget)target;
> sb.append("BookmarkablePage[");
> sb.append(pageRequestTarget.getPageClass().getName());
> sb.append("]");
> becomes
> } else if (target instanceof IBookmarkablePageRequestTarget) {
> IBookmarkablePageRequestTarget pageRequestTarget =
> (IBookmarkablePageRequestTarget) target;
> sb.append("BookmarkablePage[");
> sb.append(pageRequestTarget.getPageClass().getName());
> sb.append("(");
> sb.append(pageRequestTarget.getPageParameters());
> sb.append(")]");
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.