Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ private Path prepareOutputPath(
if (matcher.matches()) {
String bucket = matcher.group("bucket");
String path = matcher.group("path");
logger.debug("Setting up CloudStorageFileSystem with bucket '{}' and path '{}'.", bucket, path);
logger.debug(
"Setting up CloudStorageFileSystem with bucket '{}' and path '{}'.", bucket, path);
CloudStorageFileSystem cloudStorageFileSystem =
closer.register(CloudStorageFileSystem.forBucket(bucket));
return cloudStorageFileSystem.getPath(path);
Expand Down
Loading