From 1ddf1a3541ad6d7bda0ef3b36388c814585d8b1e Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Thu, 22 Jan 2026 14:51:04 -0600 Subject: [PATCH] Fix VacuumDatabase logging --- datastore/sqlite/matcher_store.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/datastore/sqlite/matcher_store.go b/datastore/sqlite/matcher_store.go index 6cdfe6b..4d46c07 100644 --- a/datastore/sqlite/matcher_store.go +++ b/datastore/sqlite/matcher_store.go @@ -47,7 +47,9 @@ func (ms *sqliteMatcherStore) Initialized(_ context.Context) (bool, error) { } func (ms *sqliteMatcherStore) VacuumDatabase(ctx context.Context) error { - zlog.Debug(ctx).Msg(">>> VacuumDatabase") + ctx = zlog.ContextWithValues(ctx, + "component", "datastore/sqlite/matcher_store.VacuumDatabase") + zlog.Info(ctx).Msg("starting database vacuum") const ( vacuum = "VACUUM;" )