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
parent 12d161c1ce
commit 79237aef8a
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

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