Logs hour formatting switch to 24h format.
authorStephaneLenclud
Fri, 22 Jul 2016 13:47:44 +0200
changeset 2086cd9ffdd6386
parent 207 ca469451f8e6
child 209 fef4ca058087
Logs hour formatting switch to 24h format.
Server/RichTextBoxTextWriter.cs
     1.1 --- a/Server/RichTextBoxTextWriter.cs	Tue Jul 19 17:01:21 2016 +0200
     1.2 +++ b/Server/RichTextBoxTextWriter.cs	Fri Jul 22 13:47:44 2016 +0200
     1.3 @@ -31,8 +31,8 @@
     1.4              iLastChar = aChar;
     1.5              if (previousChar == '\n')
     1.6              {
     1.7 -                //Write(DateTime.Now.ToString("yyyy/MM/dd - hh:mm:ss.fff: "));
     1.8 -                Write(DateTime.Now.ToString("MM/dd hh:mm:ss.fff: "));
     1.9 +                //Write(DateTime.Now.ToString("yyyy/MM/dd - HH:mm:ss.fff: "));
    1.10 +                Write(DateTime.Now.ToString("MM/dd HH:mm:ss.fff: "));
    1.11              }
    1.12  
    1.13