Skip to content

Commit

Permalink
Fix log field name for health check status (jaegertracing#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCN authored and yurishkuro committed Sep 21, 2017
1 parent 489d7ed commit bb5f150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/healthcheck/handler.go
Expand Up @@ -85,7 +85,7 @@ func (s *State) Ready() {
// Set a new HTTP status for the health check
func (s *State) Set(state int) {
s.state = state
s.logger.Info("Health Check state change", zap.Int("http-port", s.state))
s.logger.Info("Health Check state change", zap.Int("http-status", s.state))
}

// Get the current status code for this health check
Expand Down

0 comments on commit bb5f150

Please sign in to comment.