1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 02:27:13 +00:00

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

This commit is contained in:
Qstick 2017-10-08 01:20:51 -04:00
parent 4cb3d8bac7
commit cf11906118

View file

@ -51,6 +51,10 @@ private void ExecuteCommands()
_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");