vote up 0 vote down star

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?

flag

5 Answers

vote up 1 vote down check

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);}
link|flag
1  
These should be static methods, as no dependency on the object calling them. – JDunkerley May 14 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 at 13:52
actually, the most efficient string concatenation method is probably string.Concat(). Not that it would matter anyway. – DonkeyMaster May 14 at 15:15
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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);
    }
}
link|flag
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 at 13:47
Isn't System.Diagnostics.Trace.WriteLine() also static? Depends which he's using I guess :/ – Lloyd May 14 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.