consul: fix log message

This commit is contained in:
Ryan Uber 2015-06-11 15:00:26 -07:00
parent 96746fb1c1
commit e06e5c5e99
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ func (f *aclFilter) filterCheckServiceNodes(nodes *structs.CheckServiceNodes) {
if f.filterService(node.Service.Service) {
continue
}
f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node.Node)
f.logger.Printf("[DEBUG] consul: dropping node %q from result due to ACLs", node.Node.Node)
csn = append(csn[:i], csn[i+1:]...)
i--
}