We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dedc99 commit 843c406Copy full SHA for 843c406
dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/MetadataDumper.java
@@ -113,7 +113,8 @@ private Path prepareOutputPath(
113
if (matcher.matches()) {
114
String bucket = matcher.group("bucket");
115
String path = matcher.group("path");
116
- logger.debug("Setting up CloudStorageFileSystem with bucket '{}' and path '{}'.", bucket, path);
+ logger.debug(
117
+ "Setting up CloudStorageFileSystem with bucket '{}' and path '{}'.", bucket, path);
118
CloudStorageFileSystem cloudStorageFileSystem =
119
closer.register(CloudStorageFileSystem.forBucket(bucket));
120
return cloudStorageFileSystem.getPath(path);
0 commit comments