Skip to content

Commit

Permalink
chore: reduce log level to trace in pickers.lua (#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
smjonas committed Aug 13, 2022
1 parent 8746347 commit c6cd725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/telescope/pickers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ function Picker:update_prefix(entry, row)

local line = vim.api.nvim_buf_get_lines(self.results_bufnr, row, row + 1, false)[1]
if not line then
log.warn(string.format("no line found at row %d in buffer %d", row, self.results_bufnr))
log.trace(string.format("no line found at row %d in buffer %d", row, self.results_bufnr))
return
end

Expand Down

0 comments on commit c6cd725

Please sign in to comment.