From 1a055e7e9e20488463434b80d2d929e4df802c60 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 26 Feb 2016 21:31:08 +0100 Subject: [PATCH] Reduce severity level of some message --- src/hydra-queue-runner/s3-binary-cache-store.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hydra-queue-runner/s3-binary-cache-store.cc b/src/hydra-queue-runner/s3-binary-cache-store.cc index 4484d2af..9fb39aad 100644 --- a/src/hydra-queue-runner/s3-binary-cache-store.cc +++ b/src/hydra-queue-runner/s3-binary-cache-store.cc @@ -135,7 +135,7 @@ void S3BinaryCacheStore::upsertFile(const std::string & path, const std::string auto duration = std::chrono::duration_cast(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(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();