1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00

Removed Trace Logging from FileExists.

Update will now use copy to update, instead of move.
This commit is contained in:
Mark McDowall
2011-11-21 16:39:56 -08:00
parent 2e3adf27ec
commit a91c7bbff4
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -31,7 +31,6 @@ namespace NzbDrone.Common
public virtual bool FileExists(string path)
{
Logger.Trace("Checking if File Exists: {0}", path);
return File.Exists(path);
}
+1 -1
View File
@@ -78,7 +78,7 @@ namespace NzbDrone.Update.Providers
try
{
_diskProvider.MoveDirectory(_enviromentProvider.GetUpdatePackageFolder(), targetFolder);
_diskProvider.CopyDirectory(_enviromentProvider.GetUpdatePackageFolder(), targetFolder);
}
catch (Exception e)
{