Is there any way to display logging output of deployed
applications (Sneak Preview II) in the Studio environment ?
A short comment on the tutorial for logging and tracing:
<i>static final Location loc = Location.getLocation(this.getClass())</i>
This will not compile because the this reference <b>is not available</b> in a static context ! One should use
<i>Foo.class</i>