refactor(AzureFileStorage): Removed unused parameter from Printf
This commit is contained in:
parent
06906b0063
commit
159abfb59e
1 changed files with 1 additions and 1 deletions
|
|
@ -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()))
|
||||
|
|
|
|||
Reference in a new issue