Function: debugOut


void debugOut( String string )

Summary

Allows information to be written to the dg.log file or the console.


Parameters

ParameterDescription
String string


Examples

Write a list of favourites to the log file.

var arrFavourites = app.getMarkerManager().getMarkersByType( 1 );

for( i in arrFavourites )
{
debugOut( arrFavourites[ i ].markerName );
}


Requirements

Build 1059