We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950358b commit 51aca10Copy full SHA for 51aca10
google-cloud-storage/src/main/java/com/google/cloud/storage/BucketInfo.java
@@ -353,6 +353,11 @@ public int hashCode() {
353
return Objects.hashCode(dataLocations);
354
}
355
356
+ @Override
357
+ public String toString() {
358
+ return MoreObjects.toStringHelper(this).add("dataLocations", dataLocations).toString();
359
+ }
360
+
361
public static Builder newBuilder() {
362
return new Builder();
363
0 commit comments