Skip to content

Commit

Permalink
cli: Fix log output for -azure-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Acconut committed Feb 23, 2024
1 parent 9b6f2f0 commit 21780b7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cmd/tusd/cli/composer.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,8 @@ func CreateComposer() {
// e.g. http://127.0.0.1:10000/devstoreaccount1
if azureEndpoint == "" {
azureEndpoint = fmt.Sprintf("https://%s.blob.core.windows.net", accountName)
stdout.Printf("Custom Azure Endpoint not specified in flag variable azure-endpoint.\n"+
"Using endpoint %s\n", azureEndpoint)
} else {
stdout.Printf("Using Azure endpoint %s\n", azureEndpoint)
}
stdout.Printf("Using Azure endpoint %s.\n", azureEndpoint)

azConfig := &azurestore.AzConfig{
AccountName: accountName,
Expand Down

0 comments on commit 21780b7

Please sign in to comment.