<?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: Create a Logger using the Trace Listener in C#</title>
	<atom:link href="http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/</link>
	<description>C# Programming Tutorials</description>
	<lastBuildDate>Fri, 03 Sep 2010 10:48:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Allan Pedersen</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-5252</link>
		<dc:creator>Allan Pedersen</dc:creator>
		<pubDate>Fri, 13 Aug 2010 11:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-5252</guid>
		<description>Thanks, good to hear i am not way of track by mailing myself error/log reports... :-) (My company is not that big and installations is relatively limited). Logging everything to a database might be a bit to heavy net usage for my liking.

Thanks again for your tutorial and for your comments....</description>
		<content:encoded><![CDATA[<p>Thanks, good to hear i am not way of track by mailing myself error/log reports&#8230; <img src='http://www.daveoncsharp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  (My company is not that big and installations is relatively limited). Logging everything to a database might be a bit to heavy net usage for my liking.</p>
<p>Thanks again for your tutorial and for your comments&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-5251</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 13 Aug 2010 11:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-5251</guid>
		<description>Usually I do the same. When sending errors by email you will immediately know when something goes wrong, and it&#039;s quite simple to implement and works most of the time.  

I have also worked on systems where error logs are automatically downloaded from our clients&#039; servers over ftp on a weekly basis. Also, what you could do instead of sending emails is open a socket from the client&#039;s pc to your server and send the error message over tcp. Then you could store it in a database on your server, but this does require you to have a server with a static ip always online.

I am sure there are other methods worth exploring, but if you are not expecting many errors and only have a few installations of your application out there, I would stick with receiving errors by email. I would create an email account just for this purpose though, so as not to clutter my personal mailbox.</description>
		<content:encoded><![CDATA[<p>Usually I do the same. When sending errors by email you will immediately know when something goes wrong, and it&#8217;s quite simple to implement and works most of the time.  </p>
<p>I have also worked on systems where error logs are automatically downloaded from our clients&#8217; servers over ftp on a weekly basis. Also, what you could do instead of sending emails is open a socket from the client&#8217;s pc to your server and send the error message over tcp. Then you could store it in a database on your server, but this does require you to have a server with a static ip always online.</p>
<p>I am sure there are other methods worth exploring, but if you are not expecting many errors and only have a few installations of your application out there, I would stick with receiving errors by email. I would create an email account just for this purpose though, so as not to clutter my personal mailbox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan Pedersen</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-5231</link>
		<dc:creator>Allan Pedersen</dc:creator>
		<pubDate>Fri, 13 Aug 2010 06:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-5231</guid>
		<description>What is your best practise for retrieving the log files? I like to get the log files whin an error occurs so I am sending them to my self by mail from the program...</description>
		<content:encoded><![CDATA[<p>What is your best practise for retrieving the log files? I like to get the log files whin an error occurs so I am sending them to my self by mail from the program&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-5128</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 11 Aug 2010 10:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-5128</guid>
		<description>Thanks for your comment. I&#039;m glad you found the tutorial helpful.

I usually handle the trace log in two different ways depending on the application. If the application writes massive amounts of logs to the trace file I would create a new file each day, and then either compress them or archive them every month or so. If the application only writes errors to the log file I would start a new file after it reaches about 5Mb and then archive those every year. It really depends on how much your application will be writing to the log file.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment. I&#8217;m glad you found the tutorial helpful.</p>
<p>I usually handle the trace log in two different ways depending on the application. If the application writes massive amounts of logs to the trace file I would create a new file each day, and then either compress them or archive them every month or so. If the application only writes errors to the log file I would start a new file after it reaches about 5Mb and then archive those every year. It really depends on how much your application will be writing to the log file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan Pedersen</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-5093</link>
		<dc:creator>Allan Pedersen</dc:creator>
		<pubDate>Tue, 10 Aug 2010 20:59:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-5093</guid>
		<description>Hi! Great site, great tutorial, it really explained it alle very well... I can only hope for a follow-up on this tracing subject. I would like to have your thoughts about how you would handle the trace log once the software is published... 

Thanks again! I will be looking into your site from time to time from now on... :-)</description>
		<content:encoded><![CDATA[<p>Hi! Great site, great tutorial, it really explained it alle very well&#8230; I can only hope for a follow-up on this tracing subject. I would like to have your thoughts about how you would handle the trace log once the software is published&#8230; </p>
<p>Thanks again! I will be looking into your site from time to time from now on&#8230; <img src='http://www.daveoncsharp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-4362</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-4362</guid>
		<description>Glad you found this helpful.</description>
		<content:encoded><![CDATA[<p>Glad you found this helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.daveoncsharp.com/2009/09/create-a-logger-using-the-trace-listener-in-csharp/comment-page-1/#comment-4360</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveoncsharp.com/?p=1304#comment-4360</guid>
		<description>Perfect example for what I needed. Good and consise explaination too. Thanks!</description>
		<content:encoded><![CDATA[<p>Perfect example for what I needed. Good and consise explaination too. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
