Print a Breadcrumb Message to Domino Console

Mindwatering Incorporated

Author: Tripp W Black

Created: 12/27/2010 at 09:07 PM

 

Category:
Notes Developer Tips
XPages

ssue:
Want a quick sloppy way to do LotusScript equivalent to Print a variable's value in an Xpage / Custom Control object's event code: Server Side Javascript XPage events.

Solution:
Use the following example Server Side JavaScript event code:
var myvar = 'hello';
print(myvar);

or

java.lang.System.out.println('hello');

For the above example, this will make the server console output:
HTTP JVM: hello


previous page