We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c6f828 commit 0a8be1dCopy full SHA for 0a8be1d
go/logic/migrator.go
@@ -744,6 +744,9 @@ func (this *Migrator) printMigrationStatusHint(writers ...io.Writer) {
744
// By default the status is written to standard output, but other writers can
745
// be used as well.
746
func (this *Migrator) printStatus(rule PrintStatusRule, writers ...io.Writer) {
747
+ if rule == NoPrintStatusRule {
748
+ return
749
+ }
750
writers = append(writers, os.Stdout)
751
752
elapsedTime := this.migrationContext.ElapsedTime()
0 commit comments