Changes for page Click to Debug

Last modified by Kieran Kelleher on 2009/08/12 14:33

From version 6.1
edited by David Holt
on 2009/08/12 14:33
Change comment: There is no comment for this version
To version 8.1
edited by Chuck Hill
on 2008/12/17 18:13
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.dholt
1 +XWiki.chillatgvc
Content
... ... @@ -1,6 +1,6 @@
1 1  == What It Is ==
2 2  
3 -Click to Debug is a [[Click to Open]] extension that allows you to toggle binding debugging from the UI while your application is running.
3 +Click to Debug is a [[Click to Open]] extension that allows you to toggle binding debugging from the UI while your applicaiton is running.
4 4  
5 5  == What You Need ==
6 6  
... ... @@ -219,18 +219,16 @@
219 219  
220 220  {{code}}
221 221  
222 -DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
223 -DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
224 -DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
225 -DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
226 -DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
227 -DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null
228 -DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value null
229 -DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null
222 +Dec 13 11:00:29 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
223 +Dec 13 11:00:29 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
224 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
225 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
226 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">
227 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null
228 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value null
229 +Dec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null
230 230  
231 231  {{/code}}
232 232  
233 -**Note**: A prefix like ##Dec 13 11:00:29 MDTaskWOL:62934 (ERXNSLogLog4jBridge.java:46)## was removed from each line above to make this easier to read.
234 -
235 235  So what that's showing is HatchViewTaskPage component is pushing the task binding into the HatchEditTask component with the value Task
236 236  1027787, then HatchEditTask component is pushing the binding back up. So you can see here that 6th line, HatchEditTask component is pushing a null binding back out (which, in this case, was causing a problem I was trying to find).