Added Trace Logging to DiskProvider.DeleteFile.

This commit is contained in:
Mark McDowall 2011-11-19 21:35:44 -08:00
parent ce73b45814
commit 95d1832379
1 changed files with 1 additions and 0 deletions

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);
} }