Ignore:
Timestamp:
Aug 12, 2015, 6:10:28 PM (9 years ago)
Author:
alloc
Message:

Fixes 5_7_9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/WebConnection.cs

    r244 r250  
    1212                private DateTime login;
    1313                private DateTime lastAction;
    14 
    1514                private List<string> outputLines = new List<string> ();
    16                 private List<LogLine> logLines = new List<LogLine> ();
    1715
    1816                public string SessionID {
     
    5755
    5856                public override void SendLog (string _msg, string _trace, LogType _type) {
    59                         LogLine ll = new LogLine ();
    60                         ll.message = _msg;
    61                         ll.trace = _trace;
    62                         ll.type = _type;
    63                         logLines.Add (ll);
     57                        // Do nothing, handled by LogBuffer
    6458                }
    6559
    66                 private struct LogLine {
    67                         public string message;
    68                         public string trace;
    69                         public LogType type;
    70                 }
    7160        }
    7261}
Note: See TracChangeset for help on using the changeset viewer.