Skip to content

Commit 7a4f5f8

Browse files
committed
fix: log message corrected
1 parent 2ece25d commit 7a4f5f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/cloud_controller/blobstore/storage_cli/storage_cli_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def initialize(directory_key:, resource_type:, root_dir:, min_size: nil, max_siz
4444
@min_size = min_size || 0
4545
@max_size = max_size
4646
@storage_type = PROVIDER_TO_STORAGE_CLI_STORAGETYPE[@provider]
47-
logger.info('[storage_cli_client] initialized with:', resource_type: @resource_type, provider: @provider, path: @config_file)
47+
logger.info('initialized with:', resource_type: @resource_type, provider: @provider, path: @config_file)
4848
end
4949

5050
def fetch_config(resource_type)
@@ -169,7 +169,7 @@ def ensure_bucket_exists
169169
private
170170

171171
def run_cli(command, *args, allow_exit_code_three: false)
172-
logger.info("[storage_cli_client] Running storage-cli: #{@cli_path} -c #{@config_file} #{command} #{args.join(' ')}")
172+
logger.info("running storage-cli: #{@cli_path} -c #{@config_file} #{command} #{args.join(' ')}")
173173

174174
begin
175175
stdout, stderr, status = Open3.capture3(@cli_path, '-s', @storage_type, '-c', @config_file, command, *args)

0 commit comments

Comments
 (0)