]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Log when a manifest lookup fails due to a missing file
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 21 Aug 2010 14:42:47 +0000 (16:42 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 21 Aug 2010 14:42:47 +0000 (16:42 +0200)
manifest.c

index ad12000e804fec04dbc016c4f43e0ea1cd0bcc8b..f3d1cbb6765891d6b3d0b9b853333331dd961bfb 100644 (file)
@@ -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");