diff --git a/client/internal/engine.go b/client/internal/engine.go index 76829381f..8bd9d7c72 100644 --- a/client/internal/engine.go +++ b/client/internal/engine.go @@ -908,7 +908,11 @@ func (e *Engine) handleSync(update *mgmProto.SyncResponse) error { started := time.Now() defer func() { duration := time.Since(started) - log.Infof("sync finished in %s", duration) + if update.GetNetworkMap() != nil { + log.Infof("sync finished in %s, %d", duration, update.GetNetworkMap().GetSerial()) + } else { + log.Infof("sync finished in %s", duration) + } e.clientMetrics.RecordSyncDuration(e.ctx, duration) }() e.syncMsgMux.Lock()