Ignore:
Timestamp:
Aug 14, 2022, 8:13:05 PM (2 years ago)
Author:
alloc
Message:

Updated logging strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/WebCommandResult.cs

    r391 r399  
    5858                        } catch (IOException e) {
    5959                                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);
    6261                                } else {
    63                                         Log.Out ("Error (IO) in WebCommandResult.SendLines(): " + e);
     62                                        Log.Warning ("[Web] Error (IO) in WebCommandResult.SendLines(): " + e);
    6463                                }
    6564                        } catch (Exception e) {
    66                                 Log.Out ("Error in WebCommandResult.SendLines(): " + e);
     65                                Log.Warning ("[Web] Error in WebCommandResult.SendLines(): " + e);
    6766                        } finally {
    6867                                response?.Close ();
Note: See TracChangeset for help on using the changeset viewer.