[Modify] Polish it

Output Message as a fatal log and ToString as a debug log.
This commit is contained in:
sta 2017-03-14 17:42:34 +09:00
parent 7bec6fe8ca
commit 555a8d43a6

View File

@ -857,7 +857,9 @@ namespace WebSocketSharp.Server
break; break;
} }
_log.Fatal (ex.ToString ()); _log.Fatal (ex.Message);
_log.Debug (ex.ToString ());
break; break;
} }
catch (Exception ex) { catch (Exception ex) {