Skip to content

Commit

Permalink
rename logger warning macro (#73)
Browse files Browse the repository at this point in the history
This renames the logger warning macro to avoid the deprecation warning when using the Manager in a project.
  • Loading branch information
hl authored Dec 22, 2023
1 parent 093c758 commit d227472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ecsx/manager.ex
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ defmodule ECSx.Manager do
Logger.info("`startup/0` complete")

{:error, reason} ->
Logger.warn("Failed to retrieve components: #{inspect(reason)}")
Logger.warning("Failed to retrieve components: #{inspect(reason)}")
setup()
Logger.info("`setup/0` complete")
startup()
Expand Down

0 comments on commit d227472

Please sign in to comment.