Skip to content

Commit

Permalink
Fix calls to deprecated Logger.warn/2
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisMT committed Jun 20, 2023
1 parent c7e0a7d commit 581f675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ecto/migrator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ defmodule Ecto.Migrator do
if opts[:strict_version_order] do
raise Ecto.MigrationError, message
else
Logger.warn message
Logger.warning message
end
end

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule EctoSQL.MixProject do
[
app: :ecto_sql,
version: @version,
elixir: "~> 1.10",
elixir: "~> 1.11",
deps: deps(),
test_paths: test_paths(System.get_env("ECTO_ADAPTER")),
xref: [
Expand Down

0 comments on commit 581f675

Please sign in to comment.