From 92dc0506fe9871235da7b35dea4821201807ea49 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Wed, 1 Feb 2023 04:41:24 +0100 Subject: [PATCH] Add hook path to logger output Signed-off-by: Evan Lezar --- internal/edits/edits.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/edits/edits.go b/internal/edits/edits.go index 96d40c60..425e01a8 100644 --- a/internal/edits/edits.go +++ b/internal/edits/edits.go @@ -108,7 +108,7 @@ func (e *edits) Modify(spec *ociSpecs.Spec) error { } e.logger.Infof("Hooks:") for _, hook := range e.Hooks { - e.logger.Infof("Injecting %v", hook.Args) + e.logger.Infof("Injecting %v %v", hook.Path, hook.Args) } return e.Apply(spec)