@ -1,4 +1,5 @@
using System;
using NLog.Common;
using NLog.Config;
using NLog;
using NLog.Layouts;
@ -79,7 +80,15 @@ namespace NzbDrone.Core.Instrumentation
log.Level = logEvent.Level.Name;
_repository.Insert(log);
try
{
}
catch (Exception ex)
InternalLogger.Error("Unable to save log event to database: {0}", ex);
throw;
public void Handle(ApplicationShutdownRequested message)