tracesource Questions
4
Solved
The following code:
static void Main(string[] args)
{
TraceSource ts = new TraceSource("MyApplication");
ts.Switch = new SourceSwitch("MySwitch");
ts.Switch.Level = SourceLevels.All;
ts.List...
Opulence asked 8/11, 2012 at 12:6
1
Solved
How do I troubleshoot System.Diagnostics trace when it quietly fails to do anything at all?
Illbehaved asked 14/5, 2014 at 20:32
2
The MSDN documentation for the TraceSource class has an example of how the app.config file can list out information for TraceSource instances:
http://msdn.microsoft.com/en-us/library/system.diagno...
Mischief asked 13/12, 2012 at 21:28
2
Solved
Anyone knows the difference between System.Diagnostic.Trace and System.Diagnostic.TraceSource classes?
I've been using Trace for most of my projects and I just happen to found out about TraceSourc...
Oregon asked 8/7, 2009 at 23:55
1
Solved
If one application is writing all its activity data in one log file, is there any use of having more than one TraceSource? I am just curious about the uses cases where one will need more than one T...
Assets asked 1/2, 2011 at 21:7
1
© 2022 - 2024 — McMap. All rights reserved.