Skip to content

Commit

Permalink
Merge pull request #31 from desdic/fix
Browse files Browse the repository at this point in the history
Fix: fix log level constant
  • Loading branch information
desdic committed May 18, 2024
2 parents e7a8f7d + 6e0f7f6 commit 3d2f0fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/greyjoy/_extensions/generic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local ok, greyjoy = pcall(require, "greyjoy")
if not ok then
vim.notify(
"This plugin requires greyjoy.nvim (https://github.com/desdic/greyjoy.nvim)",
vim.lsp.log_levels.ERROR,
vim.log.levels.ERROR,
{ title = "Plugin error" }
)
return
Expand All @@ -12,7 +12,7 @@ local uok, utils = pcall(require, "greyjoy.utils")
if not uok then
vim.notify(
"This plugin requires greyjoy.nvim (https://github.com/desdic/greyjoy.nvim)",
vim.lsp.log_levels.ERROR,
vim.log.levels.ERROR,
{ title = "Plugin error" }
)
return
Expand Down

0 comments on commit 3d2f0fb

Please sign in to comment.