From 15cdb37ec29056890a44f5a5b22f4917b81c5781 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 5 May 2026 21:33:27 +0900 Subject: cmd/mbf: optional init verbosity This output is generally not needed and only useful when debugging container machinery itself. Signed-off-by: Ophestra --- cmd/mbf/cache.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmd/mbf/cache.go') diff --git a/cmd/mbf/cache.go b/cmd/mbf/cache.go index 5c89ca10..05fa7070 100644 --- a/cmd/mbf/cache.go +++ b/cmd/mbf/cache.go @@ -21,6 +21,7 @@ type cache struct { cures, jobs int hostAbstract, idle bool + verboseInit bool base string } @@ -45,6 +46,9 @@ func (cache *cache) open() (err error) { if cache.hostAbstract { flags |= pkg.CHostAbstract } + if !cache.verboseInit { + flags |= pkg.CSuppressInit + } done := make(chan struct{}) defer close(done) -- cgit v1.3.1