some messagages are now Info instead of Debug

This commit is contained in:
Shlomi Noach 2016-05-17 11:57:43 +02:00
parent 9a3c607665
commit 065d9c40ec

View File

@ -568,15 +568,15 @@ func (this *Applier) StopSlaveNicely() error {
if err != nil { if err != nil {
return err return err
} }
log.Debugf("Replication stopped at %+v. Will wait for SQL thread to apply", *binlogCoordinates) log.Infof("Replication stopped at %+v. Will wait for SQL thread to apply", *binlogCoordinates)
if err := this.MasterPosWait(binlogCoordinates); err != nil { if err := this.MasterPosWait(binlogCoordinates); err != nil {
return err return err
} }
log.Debugf("Replication SQL thread applied all events") log.Infof("Replication SQL thread applied all events")
if selfBinlogCoordinates, err := mysql.GetSelfBinlogCoordinates(this.db); err != nil { if selfBinlogCoordinates, err := mysql.GetSelfBinlogCoordinates(this.db); err != nil {
return err return err
} else { } else {
log.Debugf("Self binlog coordinates: %+v", *selfBinlogCoordinates) log.Infof("Self binlog coordinates: %+v", *selfBinlogCoordinates)
} }
return nil return nil
} }