From 14e6e6626d6810457033dd1ea026c92cbcc49f6b Mon Sep 17 00:00:00 2001 From: ningmingxiao Date: Mon, 18 May 2026 14:04:09 +0800 Subject: [PATCH] ci: add timestamp for command execution Signed-off-by: ningmingxiao --- mod/tigron/test/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/tigron/test/command.go b/mod/tigron/test/command.go index e146b5c9e80..7fabf66f78d 100644 --- a/mod/tigron/test/command.go +++ b/mod/tigron/test/command.go @@ -180,7 +180,7 @@ func (gc *GenericCommand) Run(expect *Expected) { } debug = append(debug, - []any{"➡️", commandDecorator + " " + gc.cmd.Binary + " " + strings.Join(gc.cmd.Args, " ")}, + []any{"➡️", commandDecorator + " " + gc.cmd.Binary + " " + strings.Join(gc.cmd.Args, " ") + " " + time.Now().Format("2006-01-02 15:04:05.000")}, ) // Wait for the command and if Err is not nil, append it to the debug information