Fix log line for gc'ing deployments

This commit is contained in:
Alex Dadgar 2017-07-13 15:07:25 -07:00
parent cbfaa47d34
commit e71e315950
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ func (c *CoreScheduler) deploymentGC(eval *structs.Evaluation) error {
if len(gcDeployment) == 0 {
return nil
}
c.srv.logger.Printf("[DEBUG] sched.core: deployment GC: %d nodes eligible", len(gcDeployment))
c.srv.logger.Printf("[DEBUG] sched.core: deployment GC: %d deployments eligible", len(gcDeployment))
return c.deploymentReap(gcDeployment)
}