From 72ce43a4ec18cd81395b30e1bf0f00c495c5df04 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Wed, 12 Jan 2022 11:11:48 -0800 Subject: [PATCH] added tags to the cmd layer --- cmd/root.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/root.go b/cmd/root.go index 147e2600b..328f814cd 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -328,10 +328,12 @@ var rootCmd = &cobra.Command{ var roundIDs []id.Round var roundTimeout time.Duration if unsafe { + paramsE2E.DebugTag = "cmd.Unsafe" roundIDs, err = client.SendUnsafe(msg, paramsUnsafe) roundTimeout = paramsUnsafe.Timeout } else { + paramsE2E.DebugTag = "cmd.E2E" roundIDs, _, _, err = client.SendE2E(msg, paramsE2E) roundTimeout = paramsE2E.Timeout -- GitLab