Better error message when error is received from SABnzbd

This commit is contained in:
Mark McDowall
2014-02-26 22:06:24 -08:00
parent e309f89ea1
commit 7084b0244e
3 changed files with 17 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ namespace NzbDrone.Core.Jobs
}
catch (Exception e)
{
_logger.ErrorException("Error occurred while execution task " + task.TypeName, e);
_logger.ErrorException("Error occurred while executing task " + task.TypeName, e);
}
}
}