From 3595b1f8e992feab675b49a4eb550bf7331d2426 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Tue, 2 Jun 2020 22:06:03 +0200 Subject: [PATCH] compute-state html: Add timing for internal executions --- cli/state.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cli/state.go b/cli/state.go index a761b8f58..102c8d0bb 100644 --- a/cli/state.go +++ b/cli/state.go @@ -1082,12 +1082,15 @@ func printInternalExecutionsHtml(trace []*types.ExecutionResult, getCode func(ad ret = `, Return
` + ret + `
` } + slow := im.Duration > 10*time.Millisecond + veryslow := im.Duration > 50*time.Millisecond + fmt.Printf(`

%s:%s

%s -> %s (%s FIL), M%d
%s -
Exit: %d%s -`, codeStr(toCode), methods[toCode][im.Msg.Method].name, im.Msg.From, im.Msg.To, types.FIL(im.Msg.Value), im.Msg.Method, params, im.MsgRct.ExitCode, im.MsgRct.ExitCode, ret) +
Took %s, Exit: %d%s +`, codeStr(toCode), methods[toCode][im.Msg.Method].name, im.Msg.From, im.Msg.To, types.FIL(im.Msg.Value), im.Msg.Method, params, slow, veryslow, im.Duration, im.MsgRct.ExitCode, im.MsgRct.ExitCode, ret) if im.MsgRct.ExitCode != 0 { fmt.Printf(`
Error:
%s
`, im.Error) }