From 79237aef8a1208efe9ee41e17d722d642d0abfd9 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 22 Feb 2026 15:54:04 -0500 Subject: [PATCH] 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. --- lua/cp/cache.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/cp/cache.lua b/lua/cp/cache.lua index f3d0a94..efdcad7 100644 --- a/lua/cp/cache.lua +++ b/lua/cp/cache.lua @@ -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