Skip to content

Commit

Permalink
universe: don't spew the diff
Browse files Browse the repository at this point in the history
At times spew can choke on a data structure like our smt tree. Not sure
why this didn't really care before, but does now. Either way, allows a
test to proceed.
  • Loading branch information
Roasbeef committed Oct 12, 2023
1 parent cab132e commit d90d30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions universe/auto_syncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ func (f *FederationEnvoy) syncServerState(ctx context.Context,
}

// If we synced anything from the server, then we'll log that here.
log.Infof("Synced new Universe leaves from server=%v, diff=%v",
spew.Sdump(addr), spew.Sdump(diff))
log.Infof("Synced new Universe leaves from server=%v, diff_size=%v",
spew.Sdump(addr), len(diff))

// Log a new sync event in the background now that we know we were able
// to contract the remote server.
Expand Down

0 comments on commit d90d30f

Please sign in to comment.