Changeset 399 for binary-improvements2/WebServer/src/WebCommandResult.cs
- Timestamp:
- Aug 14, 2022, 8:13:05 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/WebServer/src/WebCommandResult.cs
r391 r399 58 58 } catch (IOException e) { 59 59 if (e.InnerException is SocketException) { 60 Log.Out ("Error in WebCommandResult.SendLines(): Remote host closed connection: " + 61 e.InnerException.Message); 60 Log.Warning ("[Web] Error in WebCommandResult.SendLines(): Remote host closed connection: " + e.InnerException.Message); 62 61 } else { 63 Log. Out ("Error (IO) in WebCommandResult.SendLines(): " + e);62 Log.Warning ("[Web] Error (IO) in WebCommandResult.SendLines(): " + e); 64 63 } 65 64 } catch (Exception e) { 66 Log. Out ("Error in WebCommandResult.SendLines(): " + e);65 Log.Warning ("[Web] Error in WebCommandResult.SendLines(): " + e); 67 66 } finally { 68 67 response?.Close ();
Note:
See TracChangeset
for help on using the changeset viewer.