You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With {Timber.Integrations.EctoLogger, :log, []} listed in the :loggers key for my Ecto Repository I see log statements like this:
[debug] Processed SELECT c0."id", c0."name" FROM "communities" AS c0 WHERE (c0."id" = $1) in 3ms
But I would expect to see the value of the parameters (in this case it is $1). Is there a reason that they are hidden? Can they be added back? (note: by default they are logged by Ecto).
With
{Timber.Integrations.EctoLogger, :log, []}listed in the:loggerskey for my Ecto Repository I see log statements like this:But I would expect to see the value of the parameters (in this case it is
$1). Is there a reason that they are hidden? Can they be added back? (note: by default they are logged by Ecto).