Skip to content

Commit 2fd3979

Browse files
authored
fix: error in error handler function (nvim-java#24)
1 parent a27c215 commit 2fd3979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/java/handlers/error.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ local function get_error_handler(msg, ...)
2626

2727
local log_str = table_tostring(log_obj)
2828

29-
log.error(table.unpack(log_obj))
29+
log.error(log_str)
3030
notify.error(log_str)
3131
error(log_str)
3232
end

0 commit comments

Comments
 (0)