From 2fc46796d35a89958aca8666ddbeda81b81a3d0a Mon Sep 17 00:00:00 2001 From: Mika Vilpas Date: Wed, 3 Jul 2024 09:33:12 +0300 Subject: [PATCH] fix: remove extra debug logging (#153) I left this in accidentally, and it logged a confusing message every time. --- lua/yazi/log.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/yazi/log.lua b/lua/yazi/log.lua index 4f6f73d..f05dbf6 100644 --- a/lua/yazi/log.lua +++ b/lua/yazi/log.lua @@ -58,7 +58,6 @@ end ---@param message string function Log:debug(message) - vim.notify(vim.inspect({ self.level })) if self.level and self.level ~= log_levels.OFF