diff options
| author | Jonas Strittmatter <40792180+smjonas@users.noreply.github.com> | 2022-08-13 10:59:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-13 10:59:49 +0200 |
| commit | c6cd725bc0ffd19e07679a22bacf233d9af866db (patch) | |
| tree | 749f000def563f31df740addb2965ca544347964 /lua | |
| parent | 8746347ac4065f5795e7bd33c7912ab1152cca4b (diff) | |
chore: reduce log level to trace in pickers.lua (#2124)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/pickers.lua | 2 |
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 |
