From 527d0a001f07e61ab145d0f6c894edc19b6ecd15 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 26 Jul 2025 16:30:47 +0200 Subject: [PATCH] libstore/local-store: invalidatePath inform about the physical store locations Change-Id: I2d0d6ac4e42be9c7139602a29adf6e0450e1c9d0 Signed-off-by: Raito Bezarius --- lix/libstore/local-store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lix/libstore/local-store.cc b/lix/libstore/local-store.cc index ec4361f20..0e821ef8e 100644 --- a/lix/libstore/local-store.cc +++ b/lix/libstore/local-store.cc @@ -1052,7 +1052,7 @@ try { there are no referrers. */ kj::Promise> LocalStore::invalidatePath(DBState & state, const StorePath & path) try { - debug("invalidating path '%s'", printStorePath(path)); + debug("invalidating path '%s'", toRealPath(printStorePath(path))); state.stmts->InvalidatePath.use()(printStorePath(path)).exec();