From b5364e56a8517e60425016e61daee78fbce8c375 Mon Sep 17 00:00:00 2001 From: Cyrill Troxler Date: Wed, 20 May 2026 09:40:50 +0200 Subject: [PATCH] fix: reduce logging noise on start --- shim/container.go | 1 - 1 file changed, 1 deletion(-) diff --git a/shim/container.go b/shim/container.go index 7ca99c9..0b90130 100644 --- a/shim/container.go +++ b/shim/container.go @@ -444,7 +444,6 @@ func (c *Container) startActivator(ctx context.Context, ports ...uint16) error { log.G(ctx).WithError(err).Error("failed to attach activator") return err } - log.G(ctx).Infof("attached %s", time.Now().Format(time.RFC3339Nano)) if err := c.activator.Start(c.context, c.detectProbe(c.context), c.restoreHandler(c.context), ports...); err != nil { if errors.Is(err, activator.ErrMapNotFound) { return err