The tracesource tag has no wiki summary.
3
votes
1answer
583 views
When do i need more then one TraceSource in code
If one application is writing all its activity data in one log file, is there any use of having more then one TraceSource? Just curious about the uses cases where one will need more then one ...
2
votes
2answers
302 views
TraceSource and ASP.NET: Works for Web Applications, not WebSites
I'm adding tracing functionality to an ASP.NET website so I decided to investigate TraceSource by creating a couple of prototypes; a Web Application project and a Website project.
I'm using similar ...
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
2answers
93 views
How to format the Timestamp data when using TraceOptions.Timestamp
How can I format the Timestamp data that is printed when you set the TraceOutputOptions = TraceOptions.Timestamp?
Im getting something like:
Timestamp=41329240725 (real value that was written on the ...
1
vote
1answer
59 views
TraceInformation method call is disabled by compiler
I put a breakpoint to the last line of code. Breakpoint is disabled. Why?
It looks like the code is excluded by some condition. The constructor of TraceSource works, and I can verify the object is OK ...
1
vote
2answers
326 views
Best practice for using application wide TraceSource
So I have an application where I will be using tracing for logging application activity/errors etc. Most information will go in a log file whereas some errors will go in event viewer too. This ...
0
votes
1answer
16 views
How do you stop a TextWriterTraceListener from appending using app.config?
I'm using System.Diagnostics.TraceSource for logging and one of my listeners is a TextWriterTraceListener. In the tracing primer here it sets this up as follows:
<listeners>
<add ...
0
votes
1answer
61 views
Format ApplicationData in Service Trace Viewer as XML
I'm using TraceSource to log information to a XmlWriterTraceListener. The message I'm logging is a XML, however, when I view the message in Service Trace Viewer, it's not displayed as a XML, it's ...
0
votes
2answers
179 views
TraceSource vs Enterprise logging block
Are there any specific uses cases where just using TraceSource will not be enough and one should consider looking into other logging libraries ( like Enterprise logging block, log4net, NLog etc)?
0
votes
0answers
246 views
Write eventlog while using impersonation
for some reasones we open impersonate option in web.config. Everything is fine, but only problem obsesses me that is the following error occurs while using tracesoure to write eventlog:
...
0
votes
1answer
333 views
ASP.Net - File logging with TraceSource
I want to log errors with System.Diagnostics.TraceSource and wonder which Listener I could use and how to configure it so that it logs to Log Files in a specified directory. A new log file should be ...