Reduce severity level of some message

This commit is contained in:
Eelco Dolstra 2016-02-26 21:31:08 +01:00
parent 6bb860fd6e
commit 1a055e7e9e

View file

@ -135,7 +135,7 @@ void S3BinaryCacheStore::upsertFile(const std::string & path, const std::string
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(now2 - now1).count();
printMsg(lvlError, format("uploaded s3://%1%/%2% (%3% bytes) in %4% ms")
printMsg(lvlInfo, format("uploaded s3://%1%/%2% (%3% bytes) in %4% ms")
% bucketName % path % data.size() % duration);
stats.putTimeMs += duration;
@ -164,7 +164,7 @@ std::string S3BinaryCacheStore::getFile(const std::string & path)
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(now2 - now1).count();
printMsg(lvlError, format("downloaded s3://%1%/%2% (%3% bytes) in %4% ms")
printMsg(lvlInfo, format("downloaded s3://%1%/%2% (%3% bytes) in %4% ms")
% bucketName % path % res.size() % duration);
stats.getBytes += res.size();