From cecd4d52d6229f916744612ca9927fcdc1d95848 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sat, 30 May 2020 09:14:15 -0400 Subject: [PATCH] also log path in cache miss case --- cmd/buildpack/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/buildpack/main.go b/cmd/buildpack/main.go index 98ac65f..5c54619 100644 --- a/cmd/buildpack/main.go +++ b/cmd/buildpack/main.go @@ -172,7 +172,7 @@ func (s *server) checkCachedManifest(revision, path string) []byte { var e cachedManifest ctx := context.Background() // TODO if err := s.ds.Get(ctx, k, &e); err == datastore.ErrNoSuchEntity { - s.info.Printf("No cached manifest digest for %q", revision) + s.info.Printf("No cached manifest digest for revision=%q path=%q", revision, path) } else if err != nil { s.error.Printf("datastore.Get: %v", err) }