Added Trace Logging to DiskProvider.DeleteFile.

This commit is contained in:
Mark McDowall 2011-11-19 21:35:44 -08:00
commit 95d1832379

View file

@ -121,6 +121,7 @@ namespace NzbDrone.Common
public virtual void DeleteFile(string path) public virtual void DeleteFile(string path)
{ {
Logger.Trace("Deleting file: {0}", path);
File.Delete(path); File.Delete(path);
} }