blob: c216f83ab7ba1c74cb482d51c7692247107380d5 [file] [log] [blame]
/*==================================================
* Debug Utility Functions
*==================================================
*/
Timeline.Debug = new Object();
Timeline.Debug.log = function(msg) {
};
Timeline.Debug.exception = function(e) {
alert("Caught exception: " + (Timeline.Platform.isIE ? e.message : e));
};