Skip to content

Commit

Permalink
activitylog: Fix pq.Get trace logger output (#19650)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpalmi committed Mar 20, 2023
1 parent 94a6dca commit e9d6dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault/activity/query.go
Expand Up @@ -248,7 +248,7 @@ func (s *PrecomputedQueryStore) Get(ctx context.Context, startTime, endTime time
s.logger.Trace("updating closest times")
}
}
s.logger.Trace("chose start end end times", "startTime", closestStartTime, "endTime")
s.logger.Trace("chose start/end times", "startTime", closestStartTime, "endTime", closestEndTime)

if closestStartTime.IsZero() || closestEndTime.IsZero() {
s.logger.Warn("no start or end time in range", "start time", closestStartTime, "end time", closestEndTime)
Expand Down

0 comments on commit e9d6dbc

Please sign in to comment.