From 1a9578d555f312e759eb468f2f8d09160374f697 Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Thu, 2 Dec 2021 14:00:55 +0100 Subject: [PATCH] Demote message about successful import to debug level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christian Müller --- Classes/GcsStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/GcsStorage.php b/Classes/GcsStorage.php index 55d454d..ed7b7fc 100644 --- a/Classes/GcsStorage.php +++ b/Classes/GcsStorage.php @@ -452,7 +452,7 @@ protected function importTemporaryFile(string $temporaryPathAndFilename, string throw $exception; } - $this->logger->info(sprintf('Google Cloud Storage: Successfully imported resource as object "%s" into bucket "%s" with SHA1 hash "%s"', $sha1Hash, $this->bucketName, $resource->getSha1() ?: 'unknown'), LogEnvironment::fromMethodName(__METHOD__)); + $this->logger->debug(sprintf('Google Cloud Storage: Successfully imported resource as object "%s" into bucket "%s" with SHA1 hash "%s"', $sha1Hash, $this->bucketName, $resource->getSha1() ?: 'unknown'), LogEnvironment::fromMethodName(__METHOD__)); } else { $this->logger->debug(sprintf('Google Cloud Storage: Did not import resource as object "%s" into bucket "%s" because that object already existed.', $sha1Hash, $this->bucketName), LogEnvironment::fromMethodName(__METHOD__)); }