Catch Postgres log connection errors

pull/1003/head
Qstick 3 years ago
parent adf38f256b
commit a738cfb23a

@ -97,6 +97,11 @@ namespace NzbDrone.Core.Instrumentation
WritePostgresLog(log, connectionString);
}
}
catch (NpgsqlException ex)
{
InternalLogger.Error("Unable to save log event to database: {0}", ex);
throw;
}
catch (SQLiteException ex)
{
InternalLogger.Error("Unable to save log event to database: {0}", ex);

Loading…
Cancel
Save