Skip to content

Commit a088396

Browse files
committed
Minor
1 parent 1db0f55 commit a088396

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

internal/node/pool.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func AcquireResourcesForNewContainer(fun *function.Function, forWarmPool bool) b
205205
panic("allocated more memory than available")
206206
}
207207

208-
log.Printf("Acquired resources for %s; now: %v", fun.Name, LocalResources.String())
208+
log.Printf("Acquired resources for %s", fun.Name)
209209
logPoolStatus()
210210

211211
return true
@@ -464,5 +464,6 @@ func logPoolStatus() {
464464
currPool[funcName] = fmt.Sprintf("%d(+%d)", pool.idle.Len(), pool.busy.Len())
465465
}
466466

467+
log.Printf("Resources: %v\n", LocalResources.String())
467468
log.Printf("Pool status: %v\n", currPool)
468469
}

0 commit comments

Comments
 (0)