From 1e8ac5f68ef6911c278b4c48722a1924d996206c Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 11 Mar 2026 20:20:34 +0900 Subject: [PATCH] container: use policy name in log message This is more helpful than having the user resolve the integer. Signed-off-by: Ophestra --- container/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/container.go b/container/container.go index 49b3cfe..ab597b7 100644 --- a/container/container.go +++ b/container/container.go @@ -385,7 +385,7 @@ func (p *Container) Start() error { param.priority = priority } - p.msg.Verbosef("setting scheduling policy %d", p.SchedPolicy) + p.msg.Verbosef("setting scheduling policy %s", p.SchedPolicy) if err := schedSetscheduler( 0, // calling thread p.SchedPolicy,