mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-23 15:25:14 +00:00
add log
This commit is contained in:
parent
3daa2f8453
commit
2c37db6f3f
|
@ -49,6 +49,7 @@ func (p *feeRatePoller) startLoop(ctx context.Context) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithError(err).Warn("failed to initialize the fee rate, the ticker is scheduled to update it subsequently")
|
log.WithError(err).Warn("failed to initialize the fee rate, the ticker is scheduled to update it subsequently")
|
||||||
}
|
}
|
||||||
|
log.Infof("[edwin] get fee from initializer: %v", p.symbolFeeDetail)
|
||||||
|
|
||||||
ticker := time.NewTicker(feeRatePollingPeriod)
|
ticker := time.NewTicker(feeRatePollingPeriod)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
@ -64,6 +65,7 @@ func (p *feeRatePoller) startLoop(ctx context.Context) {
|
||||||
if err := p.poll(ctx); err != nil {
|
if err := p.poll(ctx); err != nil {
|
||||||
log.WithError(err).Warn("failed to update fee rate")
|
log.WithError(err).Warn("failed to update fee rate")
|
||||||
}
|
}
|
||||||
|
log.Infof("[edwin] get fee from poller %v", p.symbolFeeDetail)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user