1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Cleanup exception messages

Closes #2054
This commit is contained in:
Mark McDowall
2017-07-26 07:17:25 -07:00
parent d257b926dc
commit 5efff4d481
2 changed files with 5 additions and 5 deletions
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using NLog;
using NzbDrone.Common.Cache;
@@ -177,12 +177,12 @@ namespace NzbDrone.Core.DataAugmentation.Scene
}
else
{
_logger.Warn("Received empty list of mapping. will not update.");
_logger.Warn("Received empty list of mapping. will not update");
}
}
catch (Exception ex)
{
_logger.Error(ex, "Failed to Update Scene Mappings.");
_logger.Error(ex, "Failed to Update Scene Mappings");
}
}