Custom Trace Listener with the Enterprise Application Blocks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T23:03:22Z http://stackoverflow.com/feeds/question/530385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/530385/custom-trace-listener-with-the-enterprise-application-blocks 1 Custom Trace Listener with the Enterprise Application Blocks Don Vince 2009-02-09T22:38:39Z 2009-10-13T06:43:35Z <p>The project I'm currently working on uses Enterprise Libraries V3.1 framework for logging.</p> <p>I need to take the log file that's generated and archive it off at specific points. The built in Trace Listeners seem to keep the file open in-between logging events. I've set up a custom Trace Listener which will append to a file and close it, so that the file is always shiftable.</p> <p>It looks like this (minus error handling for clarity):</p> <pre><code>[ConfigurationElementType(typeof(CustomTraceListenerData))] public class AlwaysClosedTextFileTraceListener : CustomTraceListener { private string logFilePath; public AlwaysClosedTextFileTraceListener () { logFilePath = @"hardcodedpath\log.txt"; } public override void Write(string message) { using (StreamWriter logFile = File.AppendText(logFilePath)) { logFile.Write(message); logFile.Flush(); logFile.Close(); } } public override void WriteLine(string message) { using (StreamWriter logFile = File.AppendText(logFilePath)) { logFile.WriteLine(message); logFile.Flush(); } } public override void TraceData(TraceEventCache eventCache, string source, TraceEventType eventType, int id, object data) { if (data is LogEntry &amp;&amp; this.Formatter != null) { WriteLine(this.Formatter.Format(data as LogEntry)); } else { WriteLine(data.ToString()); } } } </code></pre> <p>This works fine, but I'd much rather be passing in the path as a parameter somehow, rather than hardcoding it.</p> <p>For fun, I tried adding it to the constructor, to see what happens:</p> <pre><code> public LogFolderTraceListener(string logFilePath) { this.logFilePath = logFilePath; } </code></pre> <p>When I do this, I get returned an error message hinting towards what I'm doing wrong:</p> <pre><code>System.InvalidOperationException : The type 'AlwaysClosedTextFileTraceListener' specified for custom trace listener named 'MyLogFile' does not a default constructor, which is required when no InitData is specified in the configuration. </code></pre> <p>From here on in, my investigations have very much come to, the opposite of dead ends, infinite probability problems.</p> <p>I have found this thumbing through the source code for the inbuilt <code>RollingTraceListener</code></p> <ul> <li>There is a class <code>RollingFlatFileTraceListenerData : TraceListenerData</code> which seems to contain all the settings passed into the constructor</li> <li>Camped out at the bottom of the file for <code>RollingFlatFileTraceListenerData</code> is the class <code>RollingTraceListenerAssembler : TraceListenerAsssembler</code> which seems to be a factory</li> <li>There is another class <code>SystemDiagnosticsTraceListenerNode : TraceListenerNode</code> which seems to make the <code>Data</code> class presentable to the configuration application</li> </ul> <p>My question is this: how do I create a <code>CustomTraceListener</code> with a configurable parameter of <code>path</code>?</p> http://stackoverflow.com/questions/530385/custom-trace-listener-with-the-enterprise-application-blocks/1402854#1402854 -1 Answer by Don Vince for Custom Trace Listener with the Enterprise Application Blocks Don Vince 2009-09-10T00:38:10Z 2009-09-10T00:38:10Z <p>I suspect that perhaps the Enterprise Application Blocks although (probably) wonderful, seem unnecessarily complicated and ultimately more trouble than their worth for this kind of customisation.</p> http://stackoverflow.com/questions/530385/custom-trace-listener-with-the-enterprise-application-blocks/1413471#1413471 0 Answer by Bob Cummings for Custom Trace Listener with the Enterprise Application Blocks Bob Cummings 2009-09-11T21:57:23Z 2009-09-11T21:57:23Z <p>For what it is worth this is how I implemented it. In my this.buildCurrPath() I can read from a config file or in this case I just get the "launch pad" for the web app. But it works fine for me. I have not put it into any production code yet, but it should go out soon.</p> <pre><code>[ConfigurationElementType(typeof(CustomTraceListenerData))] public class CustomListener: CustomTraceListener { #region Fields (3)  private int logSize; StreamWriter sw; #endregion Fields  #region Constructors (1)  public CustomListener ():base() { string startPath = this.buildCurrPath(); sw = new StreamWriter(startPath + "\\Logs\\test.log"); sw.AutoFlush = true; } </code></pre> http://stackoverflow.com/questions/530385/custom-trace-listener-with-the-enterprise-application-blocks/1540093#1540093 0 Answer by riix for Custom Trace Listener with the Enterprise Application Blocks riix 2009-10-08T20:04:08Z 2009-10-08T20:04:08Z <p>the problem is typical microsoft .. (add your own adjectives here) ..</p> <p>1) when you add a custom trace listener, the 'raw' app.config statement added is:</p> <pre><code> name="Custom Trace Listener" initializeData="" formatter="Text Formatter" /&gt; </code></pre> <p>2) notice the 'initializeData' - this is what the cryptic error message is calling'InitData'.</p> <p>3) So what its all saying is that you need to have a constructor that accepts initialization data - in vb parlance:</p> <pre><code> sub new (byval initstuff as string) </code></pre> <p>4) OR remove the 'initializeData=""' and have a default constructor:</p> <pre><code> sub new() </code></pre> <p>I suspect the P&amp;P folks live in a bubble. riix.</p> http://stackoverflow.com/questions/530385/custom-trace-listener-with-the-enterprise-application-blocks/1558529#1558529 1 Answer by squig for Custom Trace Listener with the Enterprise Application Blocks squig 2009-10-13T06:43:35Z 2009-10-13T06:43:35Z <p>The CustomTraceListener derives from TraceListener, this has a StringDictionary called Attributes.</p> <p>This will contain all the attributes in the configuration line for your TraceListener and can be gotten out by name, eg. </p> <pre><code>string logFileName= Attributes["fileName"] </code></pre>