Fixed: Log error message when moving file to recycling bin fails

This commit is contained in:
Mark McDowall 2015-09-20 10:41:50 -07:00
parent fa527d7820
commit 49dea2cd7f
1 changed files with 12 additions and 3 deletions

View File

@ -110,9 +110,18 @@ namespace NzbDrone.Core.MediaFiles
}
}
_logger.Debug("Moving '{0}' to '{1}'", path, destination);
_diskTransferService.TransferFile(path, destination, TransferMode.Move);
try
{
_logger.Debug("Moving '{0}' to '{1}'", path, destination);
_diskTransferService.TransferFile(path, destination, TransferMode.Move);
}
catch (IOException e)
{
var message = String.Format("Unable to move '{0}' to the recycling bin: '{1}'", path, destination);
_logger.ErrorException(message, e);
throw;
}
//TODO: Better fix than this for non-Windows?
if (OsInfo.IsWindows)
{