The tracelistener tag has no wiki summary.
0
votes
1answer
17 views
Trace WCF call from client
I've built a windows forms client application which makes a WCF call. I'd like to be able to display the actual request and response from within the application. Is there a way to configure a trace ...
0
votes
1answer
37 views
System.diagnostics logging issue + Wix application name change
In my application i have configured the Trace listener as below
"HelloWorld" is my AssemblyName and Namespace
<system.diagnostics>
<sources>
<source name="DebugCategory" ...
1
vote
1answer
90 views
Thread-safe trace listener based on XmlWriterTraceListener
I want to replace default Microsoft's XmlTraceListener with a listener which switches files based on file size limit or current date. I want to keep the default XmlTraceListener file format so I can ...
2
votes
0answers
68 views
How to suppress repetitions of specific first chance exceptions from 3d-party component if I have NOT access to its source code?
My program in C# 4.0 is using 3d-party library through which launches a process of for continuously getting the flux of data through DDE from external source on the internet.
After launching the ...
0
votes
1answer
189 views
How can I save a rolling flat file trace listener on another machine in LAN?
Hi I'm using Enterprise Library 5, I defined rolling flat file trace listener, to save my logs to a file, how can I address this file to be saved on another machine on LAN?
3
votes
1answer
173 views
.Net Custom TraceListener.TraceEvent not firing
We have a custom TraceListener (inherited from System.Diagnostics.TraceListener) which we use for our ASP.NET web application logging. It's been working great - no issues. Then all the sudden it ...
0
votes
1answer
78 views
How to invoke TraceListener.Write(object) through TraceSource
We have a custom TraceListener implementation which only logs when a specific object (LogMessage) is received. This all works well when using directly with the Trace.Write(object) method.
Due to ...
1
vote
2answers
525 views
Difference Between Logger and LogWriter
I am using the Microsoft Enterprise Library 5.0 Logging block and I wanted to know the difference between the LogWriter and the Logger classes. I have a few custom trace listeners that I have built to ...
3
votes
1answer
109 views
Console application printing “Fail:”
I have a Console Application which reads some data, fills it into a Dictionary-like structure, manipulates it and then makes some output files.
However, when printing output it sometimes prints:
...
0
votes
2answers
492 views
Using Trace Listener redirects ALL Debug Output
I followed this Create a Logger using the Trace Listener in C# article with the belief that only Trace.WriteLine() statements will be written in the application.log file:
<?xml version="1.0" ...
1
vote
1answer
119 views
TraceListener to trace WCF events, but not self generated events
Our shop has a TraceListener that send events to a repository via a webservice call. We use it for our own TraceSources, but want to be able to use it for other TraceSources, like System.ServiceModel ...
1
vote
1answer
89 views
Does TraceSource.Trace methods block the calling thread until it is proccessed by all listeners?
I am new to .net tracing.
I have nearly more than 10 to 15 trace sources in my application and a text file listener and sql server listener in shared listeners list. My question is if I call
...
2
votes
1answer
90 views
TraceListener headers and footers
When writing a custom TraceListener how can I force the writeheader, the data/messsage, and the writefooter to be one discreet record? Specifically the custom tracelisteners in question write to a ...
0
votes
1answer
923 views
Attaching a trace listener to an existing trace source in app.config
I have created a trace source in my code with a specific name, and then I want to use the section in app.config to attach a listener to it at runtime.
Here is my app.config:
...
0
votes
1answer
354 views
How to dynamically/programmatically set the Enterprise Library Database Trace Listener connect string
Is there a way to dynamically/programmatically set the connection string the EntLib 5 database trace listener utilizes?
I am hosting my WCF service in Windows Azure, which means I will not have ...
3
votes
1answer
309 views
How to add RollingFlatFileTraceListenerData programmatically
I have a config file like:
<configSections>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, ...
1
vote
3answers
180 views
Is there a way of capturing debug messages in C# and then outputting them to a separate window?
I have spent 3 days looking this up and I cannot find a solid answer. I want to capture debug messages and than output them to a list log. I am trying to do this in C#. Would love some help from the ...
0
votes
1answer
338 views
Loading Trace Listener Attributes
So I have a custom trace listener which began it's life as this:
http://www.codeproject.com/Articles/30956/A-Rolling-XmlWriterTraceListener
I have modified this to work more like the Log4Net ...
1
vote
0answers
629 views
log4net's LogManager.GetLogger() throws NullReferenceException when used in custom TraceListener
I am attempting to transition a large application from using the Trace class to output notifications through log4net. As such, I wrote a custom TraceListener to redirect output into the log4net's ...
0
votes
0answers
101 views
How to log in a WCF service using TraceListeners
I have searched, but have not found any good documentation on what I am looking to do. I had previously thought that Trace.WriteLine would be something that would be caught in a TraceListener if I ...
0
votes
1answer
91 views
Mirror StdError stream to a log file
I would like to be able to log all console output from my application into a text file.
I've implemented a ConsoleTraceListener and TextWriterTraceListener as described in the following post:
...
0
votes
1answer
521 views
Prevent first chance exceptions in Output windows
In Visual Studio 2010, is it possible to prevent first chance exceptions from writing to the Output window? We have a scenario where there are lots of casts that are failing by design, and the output ...
1
vote
2answers
195 views
How can I monitor console.out?
I want to exit the program if I see some key words apprearing in Console.Out. This is because we use a third party DLL which has a problem that when it encounters some particular exception it never ...
6
votes
1answer
347 views
add/remove TraceListener to all TraceSources
I am looking for a way to add and remove a TraceListener for all existing TraceSources.
(I am not sure my approach is correct here, what other ways could I use?
Basically I want to log all trace ...
1
vote
1answer
400 views
Auto-load trace listener to all new trace sources
I am converting some code to use Microsoft tracing. What I'd like is to define all the listeners in one project and then use them from other assemblies, without having to explicitly load them there.
...
1
vote
1answer
491 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
...
1
vote
1answer
516 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
563 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:
...
2
votes
1answer
190 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, ...
0
votes
0answers
129 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 ...
1
vote
1answer
361 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 ...
2
votes
1answer
485 views
Get trace file name from TextWriterTraceListener?
I'm using TextWriterTraceListener in my application, if file is not available to write trace, it create another trace file with GUID prefix.
All I'm interested is to get the trace file name. In ...
0
votes
1answer
347 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
266 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()
...
1
vote
3answers
402 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 ...
2
votes
1answer
2k 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
167 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 ...
2
votes
2answers
891 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
6k 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
...
0
votes
1answer
448 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 ...
1
vote
1answer
1k 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
3answers
922 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
579 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 : ...
2
votes
0answers
344 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 ...


