Skip to content

Commit a2d98a4

Browse files
author
psainics
committed
Change log level to trace for existing bucket check
1 parent 646a7da commit a2d98a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/io/cdap/plugin/gcp/gcs/StorageClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public void createBucketIfNotExists(GCSPath path, @Nullable String location, @Nu
149149
// Skip bucket creation if bucket already exists.
150150
try {
151151
if (storage.get(path.getBucket()) != null) {
152-
LOG.info("Bucket {} already exists, skipping creation.", path.getBucket());
152+
LOG.trace("Bucket {} already exists, skipping creation.", path.getBucket());
153153
return;
154154
}
155155
} catch (StorageException e) {

0 commit comments

Comments
 (0)