Skip to content

Commit

Permalink
Fixing log line for remote engine in debug mode (#7133)
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Tanaka <pedro.tanaka@shopify.com>
  • Loading branch information
pedro-stanaka committed Feb 12, 2024
1 parent f5ca5a8 commit e78d867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/query/remote_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func (r *remoteQuery) Exec(ctx context.Context) *promql.Result {
}
result = append(result, series)
}
level.Debug(r.logger).Log("Executed query", "query", r.qs, "time", time.Since(start))
level.Debug(r.logger).Log("msg", "Executed query", "query", r.qs, "time", time.Since(start))

return &promql.Result{Value: result, Warnings: warnings}
}
Expand Down

0 comments on commit e78d867

Please sign in to comment.