Remove changeset from logger call in asset dirty worker

pull/974/head
Connor Rigby 2019-05-28 10:58:15 -07:00
parent 3325a8592f
commit 6ffdc43c6e
No known key found for this signature in database
GPG Key ID: 29A88B24B70456E0
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ defmodule FarmbotExt.API.DirtyWorker do
# If the changeset was valid, update the record.
def handle_changeset(%{valid?: true} = changeset, rest, state) do
Logger.info("Successfully synced: #{state.module}", changeset: changeset)
Logger.info("Successfully synced: #{state.module}")
Repo.update!(changeset)
|> Private.mark_clean!()