summaryrefslogtreecommitdiff
path: root/internal/vote/vote.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/vote/vote.go')
-rw-r--r--internal/vote/vote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vote/vote.go b/internal/vote/vote.go
index d5781b5..7407848 100644
--- a/internal/vote/vote.go
+++ b/internal/vote/vote.go
@@ -24,7 +24,7 @@ func New(conf config.Config, message string) Vote {
for _, id := range strings.Split(strings.TrimSpace(message), " ") {
if !conf.IsNode(id) {
- log.Printf("%s is not a node, excluding from the vote", id)
+ log.Println("vote: is not a node, excluding from the vote", id)
continue
}
if fromID == "" {