Changeset 332 for binary-improvements/MapRendering/Web/WebCommandResult.cs
- Timestamp:
- Nov 16, 2018, 10:38:46 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/WebCommandResult.cs
r325 r332 39 39 40 40 public void SendLines (List<string> _output) { 41 MicroStopwatch msw = new MicroStopwatch ();41 // MicroStopwatch msw = new MicroStopwatch (); 42 42 43 43 StringBuilder sb = new StringBuilder (); … … 81 81 } 82 82 83 msw.Stop ();84 if (GamePrefs.GetInt (EnumGamePrefs.HideCommandExecutionLog) < 1) {85 totalHandlingTime += msw.ElapsedMicroseconds;86 Log.Out ("WebCommandResult.SendLines(): Took {0} µs", msw.ElapsedMicroseconds);87 }83 // msw.Stop (); 84 // if (GamePrefs.GetInt (EnumGamePrefs.HideCommandExecutionLog) < 1) { 85 // totalHandlingTime += msw.ElapsedMicroseconds; 86 // Log.Out ("WebCommandResult.SendLines(): Took {0} µs", msw.ElapsedMicroseconds); 87 // } 88 88 89 89 Interlocked.Decrement (ref currentHandlers);
Note:
See TracChangeset
for help on using the changeset viewer.