Removed some DumpJson() from the trace logs.

This commit is contained in:
tidusjar 2016-06-08 17:22:17 +01:00
parent 20a18c516b
commit 0ed75f163f
5 changed files with 10 additions and 48 deletions

View file

@ -83,8 +83,6 @@ namespace PlexRequests.Store.Repository
public bool Update(T entity)
{
ResetCache();
Log.Trace("Updating entity");
Log.Trace(entity.DumpJson());
using (var db = Config.DbConnection())
{
db.Open();
@ -95,8 +93,6 @@ namespace PlexRequests.Store.Repository
public async Task<bool> UpdateAsync(T entity)
{
ResetCache();
Log.Trace("Updating entity");
Log.Trace(entity.DumpJson());
using (var db = Config.DbConnection())
{
db.Open();