Don't log error on the shutdown the command execution pipeline.

pull/94/head
Qstick 7 years ago
parent 4cb3d8bac7
commit cf11906118

@ -51,6 +51,10 @@ namespace NzbDrone.Core.Messaging.Commands
_logger.Error(ex, "Thread aborted");
Thread.ResetAbort();
}
catch (OperationCanceledException ex)
{
_logger.Trace("Stopped one command execution pipeline");
}
catch (Exception ex)
{
_logger.Error(ex, "Unknown error in thread");

Loading…
Cancel
Save