From 3de51996adb39221d5b5d75bf4b440778065686a Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sat, 21 Aug 2010 16:42:47 +0200 Subject: [PATCH] Log when a manifest lookup fails due to a missing file --- manifest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/manifest.c b/manifest.c index ad12000e8..f3d1cbb67 100644 --- a/manifest.c +++ b/manifest.c @@ -549,6 +549,7 @@ manifest_get(const char *manifest_path) fd = open(manifest_path, O_RDONLY | O_BINARY); if (fd == -1) { /* Cache miss. */ + cc_log("No such manifest file"); goto out; } f = gzdopen(fd, "rb"); -- 2.47.3