<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Logging Archives - IntelliTect</title>
	<atom:link href="https://intellitect.com/blog/tag/logging/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Complex Software Development - Simplified</description>
	<lastBuildDate>Mon, 22 Aug 2022 04:21:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://intellitect.com/wp-content/uploads/2017/02/cropped-favicon-1-32x32.png</url>
	<title>Logging Archives - IntelliTect</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Essential .NET: Logging With .NET Core 1.0</title>
		<link>https://intellitect.com/blog/essential-net-logging-with-net-core/</link>
					<comments>https://intellitect.com/blog/essential-net-logging-with-net-core/#comments</comments>
		
		<dc:creator><![CDATA[Mark Michaelis]]></dc:creator>
		<pubDate>Thu, 07 Apr 2016 21:55:39 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Dependency Injection]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[MSDN: Essential .NET]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=24562</guid>

					<description><![CDATA[<p>Exploring Microsoft.Extensions.Logging In the February issue, I delved into the new configuration API included in the newly named .NET Core 1.0 platform (see bit.ly/1OoqmkJ). (I assume most readers have heard about the recently renamed .NET Core 1.0, which was formerly referred to as .NET Core 5 and part of the ASP.NET 5 platform [see bit.ly/1Ooq7WI].)&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/essential-net-logging-with-net-core/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Essential .NET: Logging With .NET Core 1.0</span></a></div>
<p>The post <a href="https://intellitect.com/blog/essential-net-logging-with-net-core/">Essential .NET: Logging With .NET Core 1.0</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
					<wfw:commentRss>https://intellitect.com/blog/essential-net-logging-with-net-core/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Implementing a Custom ILogger for .NET Core</title>
		<link>https://intellitect.com/blog/implementing-a-custom-ilogger-with-exception-handling-for-net-core/</link>
					<comments>https://intellitect.com/blog/implementing-a-custom-ilogger-with-exception-handling-for-net-core/#comments</comments>
		
		<dc:creator><![CDATA[Mark Michaelis]]></dc:creator>
		<pubDate>Fri, 04 Mar 2016 18:30:19 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Logging]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=23671</guid>

					<description><![CDATA[<p>Consider This New Logging Framework This article corresponds with the MSDN article: Essential .NET &#8211; Logging with .NET Core. This GitHub repo contains the code referenced in the article. Not, in particular, the unit test LogCritical_Exception_Success for an example of handling an exception using the custom logger. public void LogCritical_Exception_Success() { string message = "The&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/implementing-a-custom-ilogger-with-exception-handling-for-net-core/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Implementing a Custom ILogger for .NET Core</span></a></div>
<p>The post <a href="https://intellitect.com/blog/implementing-a-custom-ilogger-with-exception-handling-for-net-core/">Implementing a Custom ILogger for .NET Core</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
					<wfw:commentRss>https://intellitect.com/blog/implementing-a-custom-ilogger-with-exception-handling-for-net-core/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>Logging and Tracing for NET Applications Part 2</title>
		<link>https://intellitect.com/blog/creating-an-nlog-wrapper-that-logs-to-azure-table-storage/</link>
					<comments>https://intellitect.com/blog/creating-an-nlog-wrapper-that-logs-to-azure-table-storage/#comments</comments>
		
		<dc:creator><![CDATA[IntelliTect]]></dc:creator>
		<pubDate>Fri, 11 Sep 2015 17:54:17 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Logging]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=19731</guid>

					<description><![CDATA[<p>.NET Applications Part 2: Creating an NLog Wrapper Welcome back to part two of our discussion on logging and tracing for .NET applications. In part one, we discussed a feature introduced in C# 5 that allows us to log detailed file, member, and line number information when tracing. Today, we&#8217;ll show how to build a&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/creating-an-nlog-wrapper-that-logs-to-azure-table-storage/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Logging and Tracing for NET Applications Part 2</span></a></div>
<p>The post <a href="https://intellitect.com/blog/creating-an-nlog-wrapper-that-logs-to-azure-table-storage/">Logging and Tracing for NET Applications Part 2</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
					<wfw:commentRss>https://intellitect.com/blog/creating-an-nlog-wrapper-that-logs-to-azure-table-storage/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Logging and Tracing for NET Applications Part 1</title>
		<link>https://intellitect.com/blog/building-a-logger-using-caller-info-attributes-part-1/</link>
					<comments>https://intellitect.com/blog/building-a-logger-using-caller-info-attributes-part-1/#comments</comments>
		
		<dc:creator><![CDATA[IntelliTect]]></dc:creator>
		<pubDate>Mon, 10 Aug 2015 18:03:51 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Logging]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=18901</guid>

					<description><![CDATA[<p>Part 1: Tracing for .NET Applications Welcome to the first of a multi-part discussion on logging and tracing for .NET applications. In this post, we will discuss using a C# 5 feature to include detailed file, member, and line number information when tracing. In future posts, we&#8217;ll discuss integrating this method with NLog to output&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/building-a-logger-using-caller-info-attributes-part-1/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Logging and Tracing for NET Applications Part 1</span></a></div>
<p>The post <a href="https://intellitect.com/blog/building-a-logger-using-caller-info-attributes-part-1/">Logging and Tracing for NET Applications Part 1</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
					<wfw:commentRss>https://intellitect.com/blog/building-a-logger-using-caller-info-attributes-part-1/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>New Attributes for Trace and Logging Information in .NET 4.5</title>
		<link>https://intellitect.com/blog/new-attributes-for-tracelogging-information-in-net-4-5/</link>
		
		<dc:creator><![CDATA[Mark Michaelis]]></dc:creator>
		<pubDate>Fri, 02 Mar 2012 09:12:01 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Logging]]></category>
		<guid isPermaLink="false">http://intellitechture.com/?p=2853</guid>

					<description><![CDATA[<p>Exploring .NET 4.5 There is a new set of .NET attributes in .NET 4.5 to help with gathering trace information. &#160;Before .NET 4.5, tracing the line number, member name, and source file name required using the stack trace in combination with the PDB files. &#160;In .NET 4.5, however, there is a new mechanism for doing&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/new-attributes-for-tracelogging-information-in-net-4-5/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">New Attributes for Trace and Logging Information in .NET 4.5</span></a></div>
<p>The post <a href="https://intellitect.com/blog/new-attributes-for-tracelogging-information-in-net-4-5/">New Attributes for Trace and Logging Information in .NET 4.5</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
