Hi, when i debug my application, on output window i see the log printing, they are with timestamp (I use NLog and i can decide what to print..), but when there are other prints, e.g first change exception, thread existing, i dont see timestamp.
Is there a way to enable that all print to output window will be with timestamp ?
I mean these outputs:
2013-11-27 13:01:05.6027 Debug 10 [Driver host] Finished Init. -> this is my print with time from nlog
A first chance exception of type 'System.TimeoutException' occurred in System.ServiceModel.dll
The thread '<No Name>' (0x1150) has exited with code 0 (0x0).
I want also timestamp on the other messages, that comes from debugger/runtime and not from my application.
Thanks