summaryrefslogtreecommitdiff
path: root/lua/telescope/pickers.lua
diff options
context:
space:
mode:
authorJonas Strittmatter <40792180+smjonas@users.noreply.github.com>2022-08-13 10:59:49 +0200
committerGitHub <noreply@github.com>2022-08-13 10:59:49 +0200
commitc6cd725bc0ffd19e07679a22bacf233d9af866db (patch)
tree749f000def563f31df740addb2965ca544347964 /lua/telescope/pickers.lua
parent8746347ac4065f5795e7bd33c7912ab1152cca4b (diff)
chore: reduce log level to trace in pickers.lua (#2124)
Diffstat (limited to 'lua/telescope/pickers.lua')
-rw-r--r--lua/telescope/pickers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/pickers.lua b/lua/telescope/pickers.lua
index 6006cb9..b704bf5 100644
--- a/lua/telescope/pickers.lua
+++ b/lua/telescope/pickers.lua
@@ -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