1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-10 12:08:03 +02:00

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

View File

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