summaryrefslogtreecommitdiff
path: root/lua/utils/init.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-08-26 20:32:16 +0200
committerGitHub <[email protected]>2021-08-26 23:02:16 +0430
commit27679f988fe187f9831ba7895c9c3a7ce2dd14f4 (patch)
treec7a9f429311a68f46752e943aa3fa03a690db722 /lua/utils/init.lua
parent14f129cf26a9814dc8f5fa46f483a588b5a813b0 (diff)
[Refactor]: only allow a single logger (#1405)
Diffstat (limited to 'lua/utils/init.lua')
-rw-r--r--lua/utils/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/utils/init.lua b/lua/utils/init.lua
index 322a961f..8ea842ca 100644
--- a/lua/utils/init.lua
+++ b/lua/utils/init.lua
@@ -70,7 +70,7 @@ function utils.toggle_autoformat()
},
},
}
- Log:info "Format on save active"
+ Log:debug "Format on save active"
end
if not lvim.format_on_save then
@@ -79,7 +79,7 @@ function utils.toggle_autoformat()
:autocmd! autoformat
endif
]]
- Log:info "Format on save off"
+ Log:debug "Format on save off"
end
end