Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my C# .NET application I have an issue with the Trace.WriteLine()-method. I uses this method alot, and want to add a TimeStamp every time I use it.

Instead of Trace.WriteLine(DateTime.Now + " Something wrong!"), is there a solution where the DateTime is on default?

share|improve this question
You can use Essential Diagnostics just like so – Eugene Ryabtsev Jul 6 '12 at 11:56

7 Answers

up vote 3 down vote accepted

Just write your own "TraceLine(string msg)" method and start calling that:

void TraceLine(string msg, bool OmitDate)
{
    if (!OmitDate)
        msg = DateTime.Now + " " + msg;
    Trace.WriteLine(msg);
}

void TraceLine(string msg) {TraceLine(msg, false);}
share|improve this answer
2  
These should be static methods, as no dependency on the object calling them. – JDunkerley May 14 '09 at 13:51
I'd suggest logging with UTC timestamps to avoid any ambiguity in timezones etc. - also you might want to use Format or StringBuilder to avoid all those temporary strings – morechilli May 14 '09 at 13:52
actually, the most efficient string concatenation method is probably string.Concat(). Not that it would matter anyway. – DonkeyMaster May 14 '09 at 15:15

You can configure the TraceOutputOptions flags enum.

var listener = new ConsoleTraceListener() { TraceOutputOptions = TraceOptions.Timestamp | TraceOptions.Callstack };
Trace.Listeners.Add(listener);

Trace.TraceInformation("hello world");

This does not work for Write and WriteLine, you have use the TraceXXX methods. This can also be configured in your App.config.

share|improve this answer
+1 for mentioning app.config – Marcel Aug 26 '11 at 6:17
+1 for not reinventing any wheels. – jwg May 2 at 16:30

You can set the app.config file to use a timestamp (relative and current time) for all trace listeners using the traceOutputOptions

traceOutputOptions = "DateTime, Timestamp";
share|improve this answer

We use log4net TraceAppender where you can config layout or filtering easily.

share|improve this answer

You could write a wrapper method that did it:

public static void DoTrace(string message)
{
    DoTrace(message,true);
}

public static void DoTrace(string message, bool includeDate)
{
    if (includeDate) {
        Trace.WriteLine(DateTime.Now + ": " + message);
    } else {
        Trace.WriteLine(message);
    }
}
share|improve this answer
This wouldn't work because DoTrace is static and you don't have access to Trace. You could use HttpContext.Current.Trace.WriteLine(DateTime.Now + ": " + message) – Darin Dimitrov May 14 '09 at 13:47
Isn't System.Diagnostics.Trace.WriteLine() also static? Depends which he's using I guess :/ – Lloyd May 14 '09 at 13:59

I thought actually, there was a way of override the method Trace.WriteLine(), like when you override ToString()?

share|improve this answer

You could write your own TextWriterTraceListener, as mentioned here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.