From 2e394d41cd8368fa71dedc36faecec625f39c83e Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Wed, 14 Jan 2015 15:08:53 -0800 Subject: [PATCH] fix log message --- pkg/scheduler/predicates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/predicates.go b/pkg/scheduler/predicates.go index fefe23c9fe1..fe27f8ceb73 100644 --- a/pkg/scheduler/predicates.go +++ b/pkg/scheduler/predicates.go @@ -125,7 +125,7 @@ func (r *ResourceFit) PodFitsResources(pod api.Pod, existingPods []api.Pod, node fitsCPU := totalMilliCPU == 0 || (totalMilliCPU-milliCPURequested) >= podRequest.milliCPU fitsMemory := totalMemory == 0 || (totalMemory-memoryRequested) >= podRequest.memory - glog.V(3).Infof("Calculated fit: cpu: %s, memory %s", fitsCPU, fitsMemory) + glog.V(3).Infof("Calculated fit: cpu: %v, memory %v", fitsCPU, fitsMemory) return fitsCPU && fitsMemory, nil }