From 03e016f40bbc82676aa3f72564713987a2628e31 Mon Sep 17 00:00:00 2001 From: Danny Turcotte Date: Wed, 27 Jan 2021 16:21:13 -0500 Subject: [PATCH] Add more data to log description --- internal/display/logs.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/display/logs.go b/internal/display/logs.go index 46b1152d4..fad779cd9 100644 --- a/internal/display/logs.go +++ b/internal/display/logs.go @@ -1,6 +1,7 @@ package display import ( + "fmt" "strings" "github.com/auth0/auth0-cli/internal/ansi" @@ -71,6 +72,8 @@ func typeDescFor(l *management.Log, noColor bool) (typ, desc string) { desc = strings.TrimSuffix(chunks[1], ")") } + desc = fmt.Sprintf("%s %s", desc, l.Description) + if !noColor { // colorize the event type field based on whether it's a success or failure if strings.HasPrefix(l.GetType(), "s") {