The tracelistener tag has no wiki summary.
2
votes
1answer
77 views
C# Add a footer to a trace listener when closed
How can one add a footer to a trace listener which is defined in the app.config:
<system.diagnostics>
<switches>
<!-- Set loglevel for diagnostic messages
(0=none, 1=errors, ...
2
votes
2answers
373 views
How to filter trace listened by event id?
I'm using next method to add a trace record:
TraceSource.TraceEvent(TraceEventType, Int32, String)
where Int32 represents event id.
So how to filter in TraceSwitch to listen only by specified ...
1
vote
1answer
98 views
Adquiring a SOAP trace for debugging is not woking
I am using Docusign API to create and retrieve "envelopes" for signing. (docusign.com for more info).
Basically i am having some issues trying to adquire a SOAP trace based on their instructions ...
1
vote
1answer
827 views
Problem redirecting debug output to a file using trace listener
I have created a debug listener to redirect the output from the Debug/Console window to a file(with a call stack), using the following code:
void SomeMethod()
{
// Create a file for output .txt.
...
1
vote
1answer
1k views
Adding tracelistener to web.config
I want to use below code with a website. Which config sections I should add to web.config to log the output into a file or windows eventlog ?
using System.Diagnostics;
// Singleton in real code
...
1
vote
1answer
731 views
.Net Windows Service and Custom Trace Listeners
I have all of my service logic encapsulated in class library. When I instantiate the class library in a command line app I receive my trace information.
When I instantiate the class in a Windows ...
1
vote
0answers
218 views
Can I attach a .NET TraceListener to an externally running process?
I am developing an application scheduling program that will run other applications using System.Diagnostics.Process. The external applications are of various types (some .NET and some not). For ...
0
votes
0answers
12 views
How to get Thread Exit messages in Trace output (TextWriterTraceListener )
I use TextWriterTraceListener as a simple logger for an application. I would like the Thread Exit messages to be written to the TraceListener, but I cannot find out how to do this.
Is it possible? ...
0
votes
1answer
78 views
catching log4net exceptions
I need to catch log4net exceptions (its own exceptions not app exceptions logged by it). I wish there's a way of doing it this way:
Try
_logger.Info(response)
Catch ex As Exception
...
0
votes
1answer
27 views
I'm getting an ConfigurationErrorsException “Couldn't find constructor for class CustomListener”
This is related to custom a Systems.Diagnostics.TraceListener
<system.diagnostics>
<sources>
<source name="SomeTraceSourceName"
...
0
votes
1answer
109 views
CLR Can't find a type, even though it's in the same assembly
I'm troubleshooting a WCF problem in our application, and turned on WCF tracing with the WCF Service Configuration Editor in VS 2010, which added the following sharedListener to the web.config:
...
0
votes
0answers
83 views
Logging .NET classes
I found this article which describes how to log information from the WebClient class. I tried to adapt this to the Timer class of System.Windows.Forms and hoped, that I can get output like "Timer ...
0
votes
1answer
204 views
Custom tracelistener freezing GUI in WPF application
Completely rewrote the question as I now have more information about what is happening.
I have a customtracelistener which overrides the writeline method to add strings to a custom ...
0
votes
1answer
139 views
SOAP message is empty when catching MessageLoggingTraceRecords with CustomTraceListener
I want to write CustomTraceListener which writes all data to SQL Server DB.
Here's the stub for it:
public class SqlTraceListener : TraceListener
{
public SqlTraceListener()
: base()
...
0
votes
2answers
192 views
How to call dispose on a custom trace listener in c#
I have written a custom trace listener extending TextWriterTraceListener.
Now, how do I call the Dispose() on the listener? I add it through the app.config of my project.
Tried adding the call ...
0
votes
0answers
514 views
Circular Buffer Trace Listener for TextWriterTraceListener
I use TextWriterTraceListener for Tracing, and I want use an Circular Buffer Trace Listener for TextWriterTraceListener.
Microsoft has one Circular Buffer Trace Listener for XmlWriteTraceListener.
...
0
votes
1answer
118 views
WCF logging: Why isn't Close being called for TraceListener?
I'm trying to log messages to my WCF service at transport level. I've followed some instructions I found on the net successfully, but now I want to implement my own trace listener that supports our ...
0
votes
1answer
313 views
System.Diagnostics.Trace.TraceListener UnsafeStringCopy exception from ASP.NET
I get an odd intermittent error when trying to write a Diagnostics.Trace message from an assembly used by an ASP.NET application. It's .NET 3.5 on IIS7.
The code setup is that when web.config has ...
0
votes
2answers
390 views
How does System.TraceListener prepend message with process name?
I have been looking at using System.Diagnostics.Trace for doing logging is a very basic app. Generally it does all I need it to do. The downside is that if I call
Trace.TraceInformation("Some ...
0
votes
1answer
438 views
Cannot select CustomTraceListener with “Type Selector” window in Enterprise Library 4.1
i created a Custom Trace Liastener inside a class library :
namespace SendMailTraceListener
{
[ConfigurationElementType(typeof(CustomTraceListenerData))]
public class SendEmailTraceListener : ...