From 1e4ae42e6c3b1d7a61657013aaf95443af80945e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 23 Aug 2022 08:44:01 +0200 Subject: [PATCH] Logger.warn -> Logger.warning --- lib/livebook/utils.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/livebook/utils.ex b/lib/livebook/utils.ex index f50cd9634..07d88db8b 100644 --- a/lib/livebook/utils.ex +++ b/lib/livebook/utils.ex @@ -338,7 +338,7 @@ defmodule Livebook.Utils do case cmd_args do {cmd, args} -> System.cmd(cmd, args) - nil -> Logger.warn("could not open the browser, no open command found in the system") + nil -> Logger.warning("could not open the browser, no open command found in the system") end :ok