feat: improve logging

This commit is contained in:
Barrett Ruth 2025-09-23 16:14:21 -04:00
parent 2d3432335c
commit 540364926d
3 changed files with 15 additions and 13 deletions

View file

@ -9,4 +9,10 @@ function M.log(msg, level, override)
end
end
function M.progress(msg)
vim.schedule(function()
vim.notify(('[cp.nvim]: %s'):format(msg), vim.log.levels.INFO)
end)
end
return M