<?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/"
		>
<channel>
	<title>Comments on: AJAX Testing and Logging</title>
	<atom:link href="http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging/feed" rel="self" type="application/rss+xml" />
	<link>http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging</link>
	<description>It's all spinning wheels and self-doubt until the first pot of coffee.</description>
	<lastBuildDate>Fri, 19 Mar 2010 00:06:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<item>
		<title>By: Shanky</title>
		<link>http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging/comment-page-1#comment-268579</link>
		<dc:creator>Shanky</dc:creator>
		<pubDate>Mon, 08 Oct 2007 16:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=669#comment-268579</guid>
		<description>&lt;p&gt;Sorry if this comment is irrelevant.&lt;/p&gt;

&lt;p&gt;Do you know of any AJAX based logging framework using which I can dynamically update the logs on a web-page. &lt;/p&gt;

&lt;p&gt;Somewhat similar to writing log.debug(&quot;Update log!&quot;); as in log4j. Where if I write something like log.updateScreen(&quot;Update Screen&quot;); from my Java code it updates the screen with the log.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sorry if this comment is irrelevant.</p>
<p>Do you know of any AJAX based logging framework using which I can dynamically update the logs on a web-page. </p>
<p>Somewhat similar to writing log.debug(&#8220;Update log!&#8221;); as in log4j. Where if I write something like log.updateScreen(&#8220;Update Screen&#8221;); from my Java code it updates the screen with the log.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan Strittmatter</title>
		<link>http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging/comment-page-1#comment-3130</link>
		<dc:creator>Stephan Strittmatter</dc:creator>
		<pubDate>Fri, 09 Dec 2005 10:44:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=669#comment-3130</guid>
		<description>&lt;p&gt;Probably we could share our knowledge about logging? I created already a project for logging in JavaScript, which is hosted at http://log4js.berlios.de/ and its API is very close to the log4j API.&lt;/p&gt;

&lt;p&gt;Currently there is also an Appender to send the logs via AJAX back to the server to log them there.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Probably we could share our knowledge about logging? I created already a project for logging in JavaScript, which is hosted at <a href="http://log4js.berlios.de/" rel="nofollow">http://log4js.berlios.de/</a> and its API is very close to the log4j API.</p>
<p>Currently there is also an Appender to send the logs via AJAX back to the server to log them there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brozow</title>
		<link>http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging/comment-page-1#comment-1949</link>
		<dc:creator>brozow</dc:creator>
		<pubDate>Sat, 24 Sep 2005 03:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=669#comment-1949</guid>
		<description>&lt;p&gt;Would love to see you enhance the AJAX testing stuff!!!&lt;/p&gt;

&lt;p&gt;Thanks for what you&#039;ve done so far!&lt;/p&gt;

&lt;p&gt;Matt&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Would love to see you enhance the AJAX testing stuff!!!</p>
<p>Thanks for what you&#8217;ve done so far!</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jm3</title>
		<link>http://decafbad.com/blog/2005/07/18/ajax-testing-and-logging/comment-page-1#comment-1775</link>
		<dc:creator>jm3</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=669#comment-1775</guid>
		<description>&lt;p&gt;your js Log class is great for conventional, syslog-style logging, i.e. recording exceptional (client-side) events over time during lights-out operation. for the other type of commonly seen JS logging, viz. interactive &quot;alert debugging&quot;, there&#039;s a neat approach that would be great to wire into your logger: the cache-and-bookmarklet approach [1]? all you do is cache log events locally in a browser in a buffer and then create a bookmarklet that reads and dumps the buffer into the page DOM or a popup, or an alert, etc. basically it&#039;s a multiline, on-demand trace console.&lt;/p&gt;

&lt;p&gt;[1] http://bob.pythonmac.org/archives/2005/07/03/bookmarklet-based-debugging/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>your js Log class is great for conventional, syslog-style logging, i.e. recording exceptional (client-side) events over time during lights-out operation. for the other type of commonly seen JS logging, viz. interactive &#8220;alert debugging&#8221;, there&#8217;s a neat approach that would be great to wire into your logger: the cache-and-bookmarklet approach [1]? all you do is cache log events locally in a browser in a buffer and then create a bookmarklet that reads and dumps the buffer into the page DOM or a popup, or an alert, etc. basically it&#8217;s a multiline, on-demand trace console.</p>
<p>[1] <a href="http://bob.pythonmac.org/archives/2005/07/03/bookmarklet-based-debugging/" rel="nofollow">http://bob.pythonmac.org/archives/2005/07/03/bookmarklet-based-debugging/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
