Skip to content

Commit 121e0e3

Browse files
committed
Logger.warn -> Logger.warning
1 parent 8bc423f commit 121e0e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/scenic/scene.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ defmodule Scenic.Scene do
724724

725725
def request_input(%Scene{viewport: vp, pid: pid, module: module}, inputs) when is_list(inputs) do
726726
unless Kernel.function_exported?(module, :handle_input, 3) do
727-
Logger.warn("Requesting input for #{inspect inputs} - #{module}.handle_input/3 not implemented")
727+
Logger.warning("Requesting input for #{inspect inputs} - #{module}.handle_input/3 not implemented")
728728
end
729729
ViewPort.Input.request(vp, inputs, pid: pid)
730730
end

0 commit comments

Comments
 (0)