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 with a somewhat equivalent and using TraceSource:
<configuration>
  <system.diagnostics>
    <trace autoflush="true">
      <sources>
        <source name="TraceSourceApp">
          <listeners>
            <add name="myListener" type="System.Diagnostics.ConsoleTraceListener" traceOutputOptions="Timestamp" />
          </listeners>
        </source>
      </sources>
    </trace>
  </system.diagnostics>
</configuration>
And in code you can:
private static TraceSource mySource =   
        new TraceSource("TraceSourceApp");
static void Main(string[] args)
{
  mySource.TraceInformation("hello world");
}
    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";
    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);}
    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);
    }
}
    
                If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With