Skip to content

Commit

Permalink
chore: remove dbg call
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziinc committed Aug 7, 2024
1 parent fd97730 commit b710426
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule Logflare.Repo.Migrations.AddEncryptedConfigFieldForBackendsTable do
# copy configs over
Repo.all(from b in "backends", select: [:id, :config])
|> Enum.each(fn %{id: id} = backend ->
{:ok, config_encrypted} = EncryptedMap.dump(backend.config) |> dbg()
{:ok, config_encrypted} = EncryptedMap.dump(backend.config)

from(b in "backends",
where: b.id == ^id,
Expand Down

0 comments on commit b710426

Please sign in to comment.