mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Only catch SQLite exceptions
This commit is contained in:
parent
d8f55c0358
commit
6109704fb0
2 changed files with 3 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Data.SQLite;
|
||||||
using NLog.Common;
|
using NLog.Common;
|
||||||
using NLog.Config;
|
using NLog.Config;
|
||||||
using NLog;
|
using NLog;
|
||||||
|
@ -84,7 +85,7 @@ namespace NzbDrone.Core.Instrumentation
|
||||||
{
|
{
|
||||||
_repository.Insert(log);
|
_repository.Insert(log);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (SQLiteException ex)
|
||||||
{
|
{
|
||||||
InternalLogger.Error("Unable to save log event to database: {0}", ex);
|
InternalLogger.Error("Unable to save log event to database: {0}", ex);
|
||||||
throw;
|
throw;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
using System;
|
using System.IO;
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Instrumentation;
|
|
||||||
|
|
||||||
namespace NzbDrone.Host.Owin
|
namespace NzbDrone.Host.Owin
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue