Skip to content

Commit

Permalink
Demote message about successful import to debug level
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Müller <[email protected]>
  • Loading branch information
kdambekalns and kitsunet authored Dec 2, 2021
1 parent f765c9f commit 1a9578d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/GcsStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -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__));
}
Expand Down

0 comments on commit 1a9578d

Please sign in to comment.