/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licensing, see: http://dojotoolkit.org/community/licensing.shtml */ dojo.provide("dojo.debug.Firebug"); dojo.deprecated("dojo.debug.Firebug is slated for removal in 0.5; use dojo.debug.console instead.", "0.5"); // summary // Firebug Console logger. // This package redirects the normal dojo debugging output to the firebug console. It does // so by sending the entire object to the console, rather than just overriding dojo.hostenv.println // so that firebugs object inspector can be taken advantage of. if (dojo.render.html.moz) { if (console && console.log) { var consoleLog = function() { if (!djConfig.isDebug) { return ; } var args = dojo.lang.toArray(arguments); args.splice(0,0, "DEBUG: "); console.log.apply(console, args); } dojo.debug = consoleLog; dojo.debugDeep=consoleLog; dojo.debugShallow=function(obj) { if (!djConfig.isDebug) { return; } if (dojo.lang.isArray(obj)) { console.log('Array: ', obj); for (var i=0; x 0.4"); } }