mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-18 19:54:44 -04:00
Log delete statements only once
This commit is contained in:
parent
99d68cfd91
commit
a23983032a
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ namespace NzbDrone.Core.Datastore
|
|||
|
||||
protected void Delete(SqlBuilder builder)
|
||||
{
|
||||
var sql = builder.AddDeleteTemplate(typeof(TModel)).LogQuery();
|
||||
var sql = builder.AddDeleteTemplate(typeof(TModel));
|
||||
|
||||
using (var conn = _database.OpenConnection())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue