telescope-frecency.nvim/lua/frecency/log.lua
JINNOUCHI Yasushi a03eb9b78a
fix!: show debug msg only when debug is true (#220)
* docs: fix the format for some docs

* fix!: show debug msg only when `debug` is `true`

Fix #212

* test: enable debug logging in tests
2024-07-06 19:13:39 +09:00

9 lines
196 B
Lua

local config = require "frecency.config"
local log = require "plenary.log"
return setmetatable({}, {
__index = function(_, key)
return config.debug and log[key] or function() end
end,
})