Skip to content

Commit

Permalink
libstore: print lvlTalkactive
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Güntner <[email protected]>
  • Loading branch information
mguentner committed Dec 28, 2016
1 parent 72fc6b8 commit 11d3aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstore/binary-cache-store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str
narInfo->ipfsHash = ipfsHash;
}
} catch (...) {
printMsg(lvlError, format("IPFS Upload of '%s' failed") % narInfo->url);
printMsg(lvlTalkative, format("IPFS Upload of '%s' failed") % narInfo->url);
}
#endif
} else
Expand Down Expand Up @@ -314,7 +314,7 @@ void BinaryCacheStore::narFromPath(const Path & storePath, Sink & sink)
try {
nar = IPFSAccessor::getFile(info->ipfsHash);
} catch (...) {
printMsg(lvlError, format("IPFS Download of '%s' failed, trying binary store method") % info->url);
printMsg(lvlTalkative, format("IPFS Download of '%s' failed, trying binary store method") % info->url);
nar = getFile(info->url);
}
} else {
Expand Down

0 comments on commit 11d3aa4

Please sign in to comment.