Skip to content

Commit

Permalink
handlers/cli: Show non-string fields appropriately
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmn committed Jul 2, 2018
1 parent ff0f669 commit 61ecaf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (h *Handler) HandleLog(e *log.Entry) error {
if name == "source" {
continue
}
fmt.Fprintf(h.Writer, " %s=%s", color.Sprint(name), e.Fields.Get(name))
fmt.Fprintf(h.Writer, " %s=%v", color.Sprint(name), e.Fields.Get(name))
}

fmt.Fprintln(h.Writer)
Expand Down

0 comments on commit 61ecaf2

Please sign in to comment.