From 8ce1ecb8973ae067adc4f3d35bb0d9aff0669d97 Mon Sep 17 00:00:00 2001 From: Guldoman Date: Thu, 2 Jun 2022 06:42:19 +0200 Subject: [PATCH] Fix `CommandView:enter` deprecation log --- data/core/commandview.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/core/commandview.lua b/data/core/commandview.lua index 101cbd98..401164d2 100644 --- a/data/core/commandview.lua +++ b/data/core/commandview.lua @@ -152,7 +152,7 @@ function CommandView:enter(text, ...) local options = select(1, ...) if type(options) ~= "table" then - core.info("Warning: deprecated CommandView:enter usage") + core.log("Warning: deprecated CommandView:enter usage") local submit, suggest, cancel, validate = ... options = { submit = submit,