From aba0d897453745795da78b97592c93e8af887ed9 Mon Sep 17 00:00:00 2001 From: ray-x Date: Mon, 27 Jun 2022 08:51:03 +1000 Subject: [PATCH] remove traceback logs --- lua/navigator/util.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/lua/navigator/util.lua b/lua/navigator/util.lua index 56ea76b..e0e09a6 100644 --- a/lua/navigator/util.lua +++ b/lua/navigator/util.lua @@ -185,7 +185,6 @@ if _NgConfigValues.debug_console_output then end M._log = require('guihua.log').new(default_config, true) -print('log instance', vim.inspect(M._log)) if _NgConfigValues.debug then -- add log to you lsp.log @@ -195,8 +194,6 @@ if _NgConfigValues.debug then M.error = M._log.error M.log = M.info else - print(vim.inspect(debug.traceback())) - print('log disabled', _NgConfigValues.debug) M.log = function(...) return { ... } end