Regular visitors to Digiguide.tv will notice that you now require a subscription to use some of the features.
However, you can give the FREE 7 day trial version of Digiguide.tv Premium a try. Build up your profile with programmes that you like, personalise your grid and set some reminders. Remember, to get a year's worth of personalised TV content for less than 1p per day simply subscribe to Digiguide Premium
Function: debugOut
void debugOut( String string )
Summary
Allows information to be written to the dg.log file or the console.
Parameters
Parameter
Description
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 ); }