1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 05:11:47 +02:00

Don't print too loudly if a substituter is missing a path when copying signatures

This commit is contained in:
Théophane Hufschmitt 2024-03-06 06:56:31 +01:00 committed by GitHub
parent 9b40a46abe
commit e77d3b805e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,7 +72,7 @@ struct CmdCopySigs : StorePathsCommand
if (!info->sigs.count(sig))
newSigs.insert(sig);
} catch (InvalidPath &) {
printError("path %s was invalid in substituter %s", storePath.to_string(), store2->getUri());
debug("path %s was invalid in substituter %s", storePath.to_string(), store2->getUri());
}
}