1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-03 10:06:06 +00: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 @@ private void TransferDirectory(string source, string target, TransferAction tran
public virtual void DeleteFile(string path)
{
Logger.Trace("Deleting file: {0}", path);
File.Delete(path);
}