Changeset 250 for binary-improvements/MapRendering/Web/WebConnection.cs
- Timestamp:
- Aug 12, 2015, 6:10:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/WebConnection.cs
r244 r250 12 12 private DateTime login; 13 13 private DateTime lastAction; 14 15 14 private List<string> outputLines = new List<string> (); 16 private List<LogLine> logLines = new List<LogLine> ();17 15 18 16 public string SessionID { … … 57 55 58 56 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 64 58 } 65 59 66 private struct LogLine {67 public string message;68 public string trace;69 public LogType type;70 }71 60 } 72 61 }
Note:
See TracChangeset
for help on using the changeset viewer.