Skip to content

Commit

Permalink
fix(plugin): improve log message when a dependency was not found
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Mar 18, 2024
1 parent 0277464 commit abfc4b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/rest-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ for dep, err in pairs(dependencies) do
error = err,
}
if not found_dep2 then
vim.notify("[rest.nvim] Dependency '" .. dep .. "' was not found. " .. err, vim.log.levels.ERROR)
vim.notify("[rest.nvim] WARN: Dependency '" .. dep .. "' was not found. " .. err, vim.log.levels.ERROR)
else
rest_nvim_deps[dep] = {
found = true,
Expand Down

0 comments on commit abfc4b2

Please sign in to comment.