Skip to content

Commit 9764257

Browse files
authored
Merge pull request #236 from weaveworks/fix-log
Fix ingester status change log message
2 parents 5497131 + 726b8a6 commit 9764257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ring/ingester_lifecycle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func RegisterIngester(cfg IngesterRegistrationConfig) (*IngesterRegistration, er
126126

127127
// ChangeState changes the state of an ingester in the ring.
128128
func (r *IngesterRegistration) ChangeState(state IngesterState) {
129-
log.Info("Changing ingester state to: %v", state)
129+
log.Infof("Changing ingester state to %v", state)
130130
r.stateChange <- state
131131
}
132132

0 commit comments

Comments
 (0)