diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-11 20:20:34 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-11 20:20:34 +0900 |
| commit | 1e8ac5f68ef6911c278b4c48722a1924d996206c (patch) | |
| tree | 90041e565f035e818227d70f652a54d48e16ebfb | |
| parent | fd515badffc159b62c5140b8340164ccd29e41f5 (diff) | |
container: use policy name in log message
This is more helpful than having the user resolve the integer.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | container/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/container.go b/container/container.go index 49b3cfe6..ab597b72 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, |
