@@ -290,7 +290,7 @@ func (c *MssqlBase) createContainer(imageName string, contextName string) {
290
290
c .downloadImage (imageName , output , controller )
291
291
}
292
292
293
- output .Infof (localizer .Sprintf ("Starting %v" , imageName ))
293
+ output .Info (localizer .Sprintf ("Starting %v" , imageName ))
294
294
containerId := controller .ContainerRun (
295
295
imageName ,
296
296
env ,
@@ -319,15 +319,15 @@ func (c *MssqlBase) createContainer(imageName string, contextName string) {
319
319
c .passwordEncryption ,
320
320
)
321
321
322
- output .Infof (
322
+ output .Info (
323
323
localizer .Sprintf ("Created context %q in \" %s\" , configuring user account..." ,
324
324
config .CurrentContextName (),
325
325
config .GetConfigFileUsed ()))
326
326
327
327
controller .ContainerWaitForLogEntry (
328
328
containerId , c .errorLogEntryToWaitFor )
329
329
330
- output .Infof (
330
+ output .Info (
331
331
localizer .Sprintf ("Disabled %q account (and rotated %q password). Creating user %q" ,
332
332
"sa" ,
333
333
"sa" ,
@@ -452,7 +452,7 @@ func (c *MssqlBase) createNonSaUser(
452
452
defaultDatabase = c .defaultDatabase
453
453
454
454
// Create the default database, if it isn't a downloaded database
455
- output .Infof (localizer .Sprintf ("Creating default database [%s]" , defaultDatabase ))
455
+ output .Info (localizer .Sprintf ("Creating default database [%s]" , defaultDatabase ))
456
456
c .query (fmt .Sprintf ("CREATE DATABASE [%s]" , defaultDatabase ))
457
457
}
458
458
@@ -532,7 +532,7 @@ func (c *MssqlBase) downloadAndRestoreDb(
532
532
_ , file := filepath .Split (databaseUrl )
533
533
534
534
// Download file from URL into container
535
- output .Infof (localizer .Sprintf ("Downloading %s" , file ))
535
+ output .Info (localizer .Sprintf ("Downloading %s" , file ))
536
536
537
537
temporaryFolder := "/var/opt/mssql/backup"
538
538
@@ -543,7 +543,7 @@ func (c *MssqlBase) downloadAndRestoreDb(
543
543
)
544
544
545
545
// Restore database from file
546
- output .Infof (localizer .Sprintf ("Restoring database %s" , databaseName ))
546
+ output .Info (localizer .Sprintf ("Restoring database %s" , databaseName ))
547
547
548
548
dbNameAsIdentifier := getDbNameAsIdentifier (databaseName )
549
549
dbNameAsNonIdentifier := getDbNameAsNonIdentifier (databaseName )
@@ -603,7 +603,7 @@ func (c *MssqlBase) downloadImage(
603
603
output * output.Output ,
604
604
controller * container.Controller ,
605
605
) {
606
- output .Infof (localizer .Sprintf ("Downloading %v" , imageName ))
606
+ output .Info (localizer .Sprintf ("Downloading %v" , imageName ))
607
607
err := controller .EnsureImage (imageName )
608
608
if err != nil || c .unitTesting {
609
609
output .FatalfErrorWithHints (
0 commit comments