Define a callback function for debug messages.
See also: Debug, SetDebug
Example - OnDebug
function OnStart()
{
app.SetOnDebug( OnDebug );
app.Debug( "app started" );
}
function OnDebug(msg)
{
app.SetDebug();
app.Alert( msg, "Received debug message:" );
app.SetDebug( true );
}