Skip to content

Commit

Permalink
Fix log keys
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir authored Apr 8, 2024
1 parent 8a8c7a0 commit 07a80cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal.go
Original file line number Diff line number Diff line change
Expand Up @@ -934,8 +934,8 @@ func (portal *Portal) catchUpHistory(source *User, fromRevision uint32, toRevisi
log := portal.log.With().
Str("action", "catchUpHistory").
Stringer("source", source.MXID).
Uint32("from revision", fromRevision).
Uint32("to revision", toRevision).
Uint32("from_revision", fromRevision).
Uint32("to_revision", toRevision).
Logger()
ctx := log.WithContext(context.TODO())
groupChanges, err := source.Client.GetGroupHistoryPage(ctx, portal.GroupID(), fromRevision, false)
Expand Down

0 comments on commit 07a80cc

Please sign in to comment.