In FB3 debug mode I want to be able to observe the value of my singleton object at any time. However, if I write "ModelLocator.getInstance()" as a watch expression I get the error of "No such variable: ModelLocator," which is true since this is not a local variable to the page, unless my breakpoint is inside of the ModelLocator file.
How do I watch this value without having to put a breakpoint in the ModelLocator file and without having to put in a throw-away local variable such as x = ModelLocator.getInstance(), which would allow me to watch x. The debug watch Expression box allows for typing many lines of code, but I'm not exactly sure what I'm allowed to type in terms of actual programming code in this box and the manual wasn't of much help. Thank you, Mike Chabot

