<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Logging Information to the Firebug JavaScript&#160;Console</title> <atom:link href="http://davidwalsh.name/firebug-console-log/feed" rel="self" type="application/rss+xml" /><link>http://davidwalsh.name/firebug-console-log</link> <description>Legendary scribbles about JavaScript, HTML5, AJAX, PHP, CSS, and ∞.</description> <lastBuildDate>Tue, 22 May 2012 16:21:46 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: Slavka</title><link>http://davidwalsh.name/firebug-console-log#comment-22416</link> <dc:creator>Slavka</dc:creator> <pubDate>Sun, 23 Jan 2011 21:10:55 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-22416</guid> <description>There are problems with console logging in different browsers.
Firefox has graete firebug.
http://getfirebug.com/wiki/index.php/Console_API
But firebug has a lot of functions towork withs CSS. Unuse in Js debagging.
More than oher browsers support firebug.js in different ways.I wrote short script for basic console.API. It redefine most of console.xxx methods to put logs(warnings,timers,info, group) to
This console work on IE6+, FF, Chrome, Safari, Opera.
Press &#039;~&#039; to show/hide them
http://dez.in.ua/console/light.html
http://dez.in.ua/console/Console supply
•	console.log(message);
•	console.info(message);
•	console.warn(message);
•	console.debug(message);
•	console.error(message);
•	console.group(marker);
•	console.group();
•	console.groupCollapsed();
•	console.groupCollapsed(marker);
•	console.groupEnd(marker);
•	console.groupEnd();
•	console.time(marker);
•	console.timeEnd(marker);
•	console.clear();
in all - IE6+, Chrome, Safari, Opera, FF( still work with FireBug, but done all console.  requests).</description> <content:encoded><![CDATA[<p>There are problems with console logging in different browsers.<br
/> Firefox has graete firebug.<br
/> <a
href="http://getfirebug.com/wiki/index.php/Console_API" rel="nofollow">http://getfirebug.com/wiki/index.php/Console_API</a><br
/> But firebug has a lot of functions towork withs CSS. Unuse in Js debagging.<br
/> More than oher browsers support firebug.js in different ways.</p><p>I wrote short script for basic console.API. It redefine most of console.xxx methods to put logs(warnings,timers,info, group) to<br
/> This console work on IE6+, FF, Chrome, Safari, Opera.<br
/> Press &#8216;~&#8217; to show/hide them<br
/> <a
href="http://dez.in.ua/console/light.html" rel="nofollow">http://dez.in.ua/console/light.html</a><br
/> <a
href="http://dez.in.ua/console/" rel="nofollow">http://dez.in.ua/console/</a></p><p>Console supply<br
/> •	console.log(message);<br
/> •	console.info(message);<br
/> •	console.warn(message);<br
/> •	console.debug(message);<br
/> •	console.error(message);<br
/> •	console.group(marker);<br
/> •	console.group();<br
/> •	console.groupCollapsed();<br
/> •	console.groupCollapsed(marker);<br
/> •	console.groupEnd(marker);<br
/> •	console.groupEnd();<br
/> •	console.time(marker);<br
/> •	console.timeEnd(marker);<br
/> •	console.clear();<br
/> in all &#8211; IE6+, Chrome, Safari, Opera, FF( still work with FireBug, but done all console.  requests).</p> ]]></content:encoded> </item> <item><title>By: doz</title><link>http://davidwalsh.name/firebug-console-log#comment-21248</link> <dc:creator>doz</dc:creator> <pubDate>Tue, 09 Nov 2010 12:57:39 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-21248</guid> <description>Hi,If you had a flattr button i flattred you !Thanks</description> <content:encoded><![CDATA[<p>Hi,</p><p>If you had a flattr button i flattred you !</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: David</title><link>http://davidwalsh.name/firebug-console-log#comment-16112</link> <dc:creator>David</dc:creator> <pubDate>Mon, 15 Feb 2010 04:06:17 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-16112</guid> <description>David, just like the david before me (wow, this is getting confusing), your blog is awesome! It has taught me alot about mootools and javascript in general. Anyways, i decided to stop being a nub and use firefox&#039;s console to log things and i came across your blog. I liked it so much I wrote an entry combining a couple of your entries onto my blog. Keep up the good work!</description> <content:encoded><![CDATA[<p>David, just like the david before me (wow, this is getting confusing), your blog is awesome! It has taught me alot about mootools and javascript in general. Anyways, i decided to stop being a nub and use firefox&#8217;s console to log things and i came across your blog. I liked it so much I wrote an entry combining a couple of your entries onto my blog. Keep up the good work!</p> ]]></content:encoded> </item> <item><title>By: David</title><link>http://davidwalsh.name/firebug-console-log#comment-9610</link> <dc:creator>David</dc:creator> <pubDate>Fri, 05 Jun 2009 15:06:15 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-9610</guid> <description>Ensuring that your console.xxx() calls don&#039;t throw errors when the code runs outside of a Firebug environment was always a concern of mine. The four options for handling it that I have seen are:Remove the comnsole.xxx() calls before publishing, as noted by the first two commenters above.
if (!window.console){ window.console.log = function {}; }
if (!window.console){ window.console.log = function { // real implementation here }; }
window.console &amp;&amp; console.log(&#039;My message to the console.&#039;);Lately, I confess I&#039;ve been doing a combination of (1) and (4). (1) keeps the code as lean as possible, but (4) allows me to miss a few without risking an error.[ BTW: Dave, I&#039;m new to your blog, but just can&#039;t say enough positive about it. The content, the look, the style. Just right freaking on. You might even have me sold on MooTools, as well. My investment in jQuery on a few projects is probably just at the level where I could conceivably back out and go with MooTools.  But that&#039;s a whole different discussion for another time. Anyway, thanks and kudos on the site. ]</description> <content:encoded><![CDATA[<p>Ensuring that your console.xxx() calls don&#8217;t throw errors when the code runs outside of a Firebug environment was always a concern of mine. The four options for handling it that I have seen are:</p><p>Remove the comnsole.xxx() calls before publishing, as noted by the first two commenters above.<br
/> if (!window.console){ window.console.log = function {}; }<br
/> if (!window.console){ window.console.log = function { // real implementation here }; }<br
/> window.console &amp;&amp; console.log(&#8216;My message to the console.&#8217;);</p><p>Lately, I confess I&#8217;ve been doing a combination of (1) and (4). (1) keeps the code as lean as possible, but (4) allows me to miss a few without risking an error.</p><p>[ BTW: Dave, I'm new to your blog, but just can't say enough positive about it. The content, the look, the style. Just right freaking on. You might even have me sold on MooTools, as well. My investment in jQuery on a few projects is probably just at the level where I could conceivably back out and go with MooTools.  But that's a whole different discussion for another time. Anyway, thanks and kudos on the site. ]</p> ]]></content:encoded> </item> <item><title>By: david</title><link>http://davidwalsh.name/firebug-console-log#comment-2676</link> <dc:creator>david</dc:creator> <pubDate>Mon, 11 Aug 2008 17:18:29 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2676</guid> <description>&lt;p&gt;@anurag:  Good question -- I couldn&#039;t find anything.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>@anurag:  Good question &#8212; I couldn&#8217;t find anything.</p> ]]></content:encoded> </item> <item><title>By: anurag phadke</title><link>http://davidwalsh.name/firebug-console-log#comment-2674</link> <dc:creator>anurag phadke</dc:creator> <pubDate>Mon, 11 Aug 2008 16:24:36 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2674</guid> <description>Is there a way to output the &quot;Net&quot; log to a file on my local machine? i.e. I want to output to a file all the URLs of images/swfs/text etc. that get loaded when a page is requested by the user.</description> <content:encoded><![CDATA[<p>Is there a way to output the &#8220;Net&#8221; log to a file on my local machine? i.e. I want to output to a file all the URLs of images/swfs/text etc. that get loaded when a page is requested by the user.</p> ]]></content:encoded> </item> <item><title>By: pfwd</title><link>http://davidwalsh.name/firebug-console-log#comment-2456</link> <dc:creator>pfwd</dc:creator> <pubDate>Sat, 26 Jul 2008 09:01:13 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2456</guid> <description>Thanks for posting. I only knew of console.log untill now. </description> <content:encoded><![CDATA[<p>Thanks for posting. I only knew of console.log untill now.</p> ]]></content:encoded> </item> <item><title>By: david</title><link>http://davidwalsh.name/firebug-console-log#comment-2451</link> <dc:creator>david</dc:creator> <pubDate>Fri, 25 Jul 2008 18:37:21 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2451</guid> <description>&lt;p&gt;Thanks for the tips!  I know that you can mess with Firebug a little with this:&lt;/p&gt;&lt;p&gt;http://davidwalsh.name/how-to-sniff-firebug-disable&lt;/p&gt;</description> <content:encoded><![CDATA[<p>Thanks for the tips!  I know that you can mess with Firebug a little with this:</p><p><a
href="http://davidwalsh.name/how-to-sniff-firebug-disable" rel="nofollow">http://davidwalsh.name/how-to-sniff-firebug-disable</a></p> ]]></content:encoded> </item> <item><title>By: Braxo</title><link>http://davidwalsh.name/firebug-console-log#comment-2448</link> <dc:creator>Braxo</dc:creator> <pubDate>Fri, 25 Jul 2008 16:33:42 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2448</guid> <description>When removing the console calls I do a simple find and replace of &#039;console.&#039; with &#039;//console.&#039;Plus, I know console.log can be used the same way in Safari&#039;s developer window.</description> <content:encoded><![CDATA[<p>When removing the console calls I do a simple find and replace of &#8216;console.&#8217; with &#8216;//console.&#8217;</p><p>Plus, I know console.log can be used the same way in Safari&#8217;s developer window.</p> ]]></content:encoded> </item> <item><title>By: Sean O</title><link>http://davidwalsh.name/firebug-console-log#comment-2447</link> <dc:creator>Sean O</dc:creator> <pubDate>Fri, 25 Jul 2008 13:26:37 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=329#comment-2447</guid> <description>Using Firebug&#039;s console() can be quite helpful.  Just remember to remove calls to it before going to production as, surprisingly, IE will kick out JS errors aplenty.  Or remember to use firebugx.js.</description> <content:encoded><![CDATA[<p>Using Firebug&#8217;s console() can be quite helpful.  Just remember to remove calls to it before going to production as, surprisingly, IE will kick out JS errors aplenty.  Or remember to use firebugx.js.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/8 queries in 0.005 seconds using disk: basic
Object Caching 804/807 objects using disk: basic

Served from: davidwalsh.name @ 2012-05-22 17:54:48 -->
