Browse Source

:art: fixup print roles

Ettore Di Giacinto 3 years ago
parent
commit
af2c92d674
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api/client/service/node.go

+ 1 - 1
api/client/service/node.go

@@ -297,7 +297,7 @@ func (k *Node) options() (r []RoleOption) {
 
 func (k *Node) execRoles(s string) {
 	r := Role(s)
-	k.logger.Info("Applying role", r)
+	k.logger.Infof("Applying role '%s'", r)
 
 	r.Apply(k.options()...)
 }