[Modify] Add a catch

This commit is contained in:
sta 2022-01-11 19:57:15 +09:00
parent 45e8d444a2
commit 9680857c95

View File

@ -838,6 +838,18 @@ namespace WebSocketSharp.Server
break;
}
catch (InvalidOperationException ex) {
if (_state == ServerState.ShuttingDown) {
_log.Info ("The underlying listener is stopped.");
return;
}
_log.Fatal (ex.Message);
_log.Debug (ex.ToString ());
break;
}
catch (Exception ex) {
_log.Fatal (ex.Message);
_log.Debug (ex.ToString ());