local M = {} M.err = function(e) vim.notify(e, vim.log.levels.ERROR) end M.info = function(e) vim.notify(e, vim.log.levels.INFO) end M.debug = function(e) vim.notify(e, vim.log.levels.DEBUG) end M.warn = function(e) vim.notify(e, vim.log.levels.WARN) end return M