refactor(AzureFileStorage): Removed unused parameter from Printf

This commit is contained in:
netbenix 2022-02-22 13:33:59 +01:00 committed by GitHub
parent 06906b0063
commit 159abfb59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ func (azure AzureFileStorage) upload(fileName string, backupName string, destina
ctx := context.Background()
fmt.Printf("[%s] Starting upload to Azure File Share...\n", backupName, ".bak")
fmt.Printf("[%s] Starting upload to Azure File Share...\n", backupName)
SQL.NewLogEntry(SQL.GetSQLInstance(), uuid.New(), SQL.LogInfo, backupName, SQL.SQLStage_Upload, SQL.REMOTE_AZURE_FILE, "Starting upload.", time.Now())
progressBar := pb.StartNew(int(fileSize.Size()))