Skip to content

Commit

Permalink
Fix incorrect debug message before election
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lefranc committed Jan 29, 2015
1 parent 85af861 commit aed361a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mariadb-repmgr/repmgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func validateHostPort(h string, p string) bool {
func (master *ServerMonitor) electCandidate(l []string) string {
ll := len(l)
if *verbose {
log.Println("Processing %s candidates", ll)
log.Printf("Processing %s candidates", ll)
}
seqList := make([]uint64, ll)
i := 0
Expand Down

0 comments on commit aed361a

Please sign in to comment.