<?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: SOS Logging Target</title>
	<atom:link href="http://soenkerohde.com/2008/08/sos-logging-target/feed/" rel="self" type="application/rss+xml" />
	<link>http://soenkerohde.com/2008/08/sos-logging-target/</link>
	<description>Flash Platform (Flash, Flex, AIR) thoughts and examples</description>
	<lastBuildDate>Tue, 09 Mar 2010 16:28:25 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Confluence: Technology Knowledge Base</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-26787</link>
		<dc:creator>Confluence: Technology Knowledge Base</dc:creator>
		<pubDate>Tue, 30 Jun 2009 11:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-26787</guid>
		<description>&lt;strong&gt;Logging in Flex...&lt;/strong&gt;

???????, ???? ??????? ????? ??????? ? ???, ????? ???????????? ?????? ?????? trace. ?????? ?? ?????? ???? ???? ????? ?????? ??????? ?????? ?????????? ? ???. ?????????? ??? logging API (...</description>
		<content:encoded><![CDATA[<p><strong>Logging in Flex&#8230;</strong></p>
<p>???????, ???? ??????? ????? ??????? ? ???, ????? ???????????? ?????? ?????? trace. ?????? ?? ?????? ???? ???? ????? ?????? ??????? ?????? ?????????? ? ???. ?????????? ??? logging API (&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24281</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Fri, 30 Jan 2009 22:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24281</guid>
		<description>I just made an update. I think there is no need to wrap with CDATA since this also shows up in SOS. Now I replace &quot;&lt;&quot; in multiline logs with &quot;&lt;&quot; which works fine. I did not see the problem Andrew reported that the second line does not show up.

The new lib can be downloaded here: http://code.google.com/p/sosloggingtarget/downloads/list</description>
		<content:encoded><![CDATA[<p>I just made an update. I think there is no need to wrap with CDATA since this also shows up in SOS. Now I replace &#8220;&lt;&#8221; in multiline logs with &#8220;&lt;&#8221; which works fine. I did not see the problem Andrew reported that the second line does not show up.</p>
<p>The new lib can be downloaded here: <a href="http://code.google.com/p/sosloggingtarget/downloads/list" rel="nofollow">http://code.google.com/p/sosloggingtarget/downloads/list</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24276</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 30 Jan 2009 14:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24276</guid>
		<description>döff, You&#039;re right. I added a get method to verify the connection outside of class code. And erred in using the getter/setter code generation in fashdevelop :). Yes, only getter makes sense. Corrected.</description>
		<content:encoded><![CDATA[<p>döff, You&#8217;re right. I added a get method to verify the connection outside of class code. And erred in using the getter/setter code generation in fashdevelop <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Yes, only getter makes sense. Corrected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24266</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Thu, 29 Jan 2009 13:10:15 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24266</guid>
		<description>Jason, this is normal logging syntax.
Try log.debug(&quot;example {0}+{1}={2}&quot;, 1, 1, 2);

Will output: example 1+1=2
The {} is a placeholder and is for instance also used in resource property file for localization.</description>
		<content:encoded><![CDATA[<p>Jason, this is normal logging syntax.<br />
Try log.debug(&#8220;example {0}+{1}={2}&#8221;, 1, 1, 2);</p>
<p>Will output: example 1+1=2<br />
The {} is a placeholder and is for instance also used in resource property file for localization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Langdon</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24265</link>
		<dc:creator>Jason Langdon</dc:creator>
		<pubDate>Thu, 29 Jan 2009 12:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24265</guid>
		<description>@Andrew - thanks for the tip re: log.info(”some text here {0}”, myObj);

How on earth did you figure out that you had to put {0} within the first string parameter? There doesn&#039;t seem to be anything that suggests you need to do this in the Flex logging API docs.</description>
		<content:encoded><![CDATA[<p>@Andrew &#8211; thanks for the tip re: log.info(”some text here {0}”, myObj);</p>
<p>How on earth did you figure out that you had to put {0} within the first string parameter? There doesn&#8217;t seem to be anything that suggests you need to do this in the Flex logging API docs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: döff</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24263</link>
		<dc:creator>döff</dc:creator>
		<pubDate>Thu, 29 Jan 2009 08:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24263</guid>
		<description>I was commenting on the source of Andrew. And just didn&#039;t figure out what the public connect setter/getter API is used for.</description>
		<content:encoded><![CDATA[<p>I was commenting on the source of Andrew. And just didn&#8217;t figure out what the public connect setter/getter API is used for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24259</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Wed, 28 Jan 2009 21:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24259</guid>
		<description>döff, what&#039;s your problem here?
Is this something with the suggest patch from andrew?
otherwise you can look into the source here: http://code.google.com/p/sosloggingtarget/source/browse/trunk/src/com/soenkerohde/logging/SOSLoggingTarget.as</description>
		<content:encoded><![CDATA[<p>döff, what&#8217;s your problem here?<br />
Is this something with the suggest patch from andrew?<br />
otherwise you can look into the source here: <a href="http://code.google.com/p/sosloggingtarget/source/browse/trunk/src/com/soenkerohde/logging/SOSLoggingTarget.as" rel="nofollow">http://code.google.com/p/sosloggingtarget/source/browse/trunk/src/com/soenkerohde/logging/SOSLoggingTarget.as</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: döff</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24258</link>
		<dc:creator>döff</dc:creator>
		<pubDate>Wed, 28 Jan 2009 20:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24258</guid>
		<description>Andrew, whats the function of the public setter/getter for _connect... if set outside, nothing happens, but it does change the _connect value... which in then is only used through getter from outside? and is kind of malfunctional, as the thing might be connected eventhough false is returned.

What am I missing here :D</description>
		<content:encoded><![CDATA[<p>Andrew, whats the function of the public setter/getter for _connect&#8230; if set outside, nothing happens, but it does change the _connect value&#8230; which in then is only used through getter from outside? and is kind of malfunctional, as the thing might be connected eventhough false is returned.</p>
<p>What am I missing here <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24232</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Mon, 26 Jan 2009 11:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24232</guid>
		<description>Thanks Andrew, it is really saver to wrap all messages within CDATA tag. I&#039;ll look into it!</description>
		<content:encoded><![CDATA[<p>Thanks Andrew, it is really saver to wrap all messages within CDATA tag. I&#8217;ll look into it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://soenkerohde.com/2008/08/sos-logging-target/comment-page-1/#comment-24219</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Sat, 24 Jan 2009 23:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/?p=230#comment-24219</guid>
		<description>Hello!
I&#039;ve made it :)
modifed class SOSLoggingTarget to make it better and more stable in logging complex messages.
Basic improvments are:
1. all manipulations in send() with xml object. It&#039;s simpler to work.
2. remove all CDATA in message if exists (i don&#039;t know now what about CDATA in CDATA... on this moment code excludes this situation by removing all CDATA-sections in source message)
3. place body (and title if full) of message in one CDATA-section for all text of message. This makes text in message safe to display in SOS.

sample project with sources attached in issue #2 on google code hosting of project in Issues section.
or
you can download it here http://www.dgserv.ru/dns/flash/sos/sosSample.zip

Let me know, please, if it usable for project or if you have any errors/troubles.</description>
		<content:encoded><![CDATA[<p>Hello!<br />
I&#8217;ve made it <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
modifed class SOSLoggingTarget to make it better and more stable in logging complex messages.<br />
Basic improvments are:<br />
1. all manipulations in send() with xml object. It&#8217;s simpler to work.<br />
2. remove all CDATA in message if exists (i don&#8217;t know now what about CDATA in CDATA&#8230; on this moment code excludes this situation by removing all CDATA-sections in source message)<br />
3. place body (and title if full) of message in one CDATA-section for all text of message. This makes text in message safe to display in SOS.</p>
<p>sample project with sources attached in issue #2 on google code hosting of project in Issues section.<br />
or<br />
you can download it here <a href="http://www.dgserv.ru/dns/flash/sos/sosSample.zip" rel="nofollow">http://www.dgserv.ru/dns/flash/sos/sosSample.zip</a></p>
<p>Let me know, please, if it usable for project or if you have any errors/troubles.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
