fix(cache): remove unused logger import

Problem: the logger import became unused after replacing the error log
with a silent cache wipe.

Solution: drop the require.
This commit is contained in:
Barrett Ruth 2026-02-22 15:54:04 -05:00 committed by Barrett Ruth
parent db5bd791f9
commit d3ac300ea0

View file

@ -40,7 +40,6 @@ local M = {}
local CACHE_VERSION = 1
local logger = require('cp.log')
local cache_file = vim.fn.stdpath('data') .. '/cp-nvim.json'
local cache_data = {}
local loaded = false