Print status to migration context logger

This commit is contained in:
Nicholas Calugar 2022-10-27 11:42:12 -07:00
parent 9b3fa793ac
commit 515aa72d3d
1 changed files with 1 additions and 0 deletions

View File

@ -1036,6 +1036,7 @@ func (this *Migrator) printStatus(rule PrintStatusRule, writers ...io.Writer) {
)
w := io.MultiWriter(writers...)
fmt.Fprintln(w, status)
this.migrationContext.Log.Infof(status)
hooksStatusIntervalSec := this.migrationContext.HooksStatusIntervalSec
if hooksStatusIntervalSec > 0 && elapsedSeconds%hooksStatusIntervalSec == 0 {