Lines Matching defs:logFormatted

1519 if(Firebug.disableResourceFetching){Firebug.Console.logFormatted(['Some Firebug Lite features are not working because resource fetching is disabled. To enabled it set the Firebug Lite option "disableResourceFetching" to "false". More info at http://getfirebug.com/firebuglite#Options'],Firebug.context,"warn")
2448 },initialize:function(){if(Env.bookmarkletOutdated){Firebug.Console.logFormatted(["A new bookmarklet version is available. Please visit http://getfirebug.com/firebuglite#Install and update it."],Firebug.context,"warn")
2795 Firebug.Console.logFormatted(["Firebug could not capture console calls during "+persistDelay+"ms"],Firebug.context,"info");
5600 },logFormatted:function(objects,context,className,noThrottle,sourceLink){return this.logRow(appendFormatted,objects,context,className,null,sourceLink,noThrottle)
5625 Firebug.Console=Firebug.Console=extend(ActivableConsole,{dispatchName:"console",error:function(){Firebug.Console.logFormatted(arguments,Firebug.browser,"error")
5639 }Firebug.Console.logFormatted(["Firebug cannot find _firebugConsole element",r,win],context,"error",true)
5690 Firebug.ConsoleListener={log:function(context,object,className,sourceLink){},logFormatted:function(context,objects,className,sourceLink){}};
6020 this.log=function(){logFormatted(arguments,"log")
6022 this.debug=function(){logFormatted(arguments,"debug",true)
6024 this.info=function(){logFormatted(arguments,"info",true)
6026 this.warn=function(){logFormatted(arguments,"warn",true)
6028 this.error=function(){logFormatted(arguments,"error",true)
6053 this.profile=function(title){logFormatted(["console.profile() not supported."],"warn",true)
6055 this.profileEnd=function(){logFormatted(["console.profile() not supported."],"warn",true)
6061 if(!frameCounter){var logRow=logFormatted(["0"],null,true,true);
6170 function logFormatted(args,className,linkToSource,noThrottle){var sourceLink=linkToSource?getStackLink():null;
6171 return Firebug.Console.logFormatted(args,context,className,noThrottle,sourceLink)
8161 this.sysout=function(){return this.logFormatted(arguments,"")
8163 this.dumpProperties=function(title,object){return this.logFormatted("dumpProperties() not supported.","warning")
8165 this.dumpStack=function(){return this.logFormatted("dumpStack() not supported.","warning")
8176 this.logFormatted=function(objects,className){var html=this.DBG_TIMESTAMP?[getTimestamp()," | "]:[];