Skip to content

Commit

Permalink
Merge pull request #63 from patrickmn/handlers-cli-show-nonstring-fields
Browse files Browse the repository at this point in the history
handlers/cli: Show non-string fields appropriately
  • Loading branch information
tj authored Jul 2, 2018
2 parents ff0f669 + 61ecaf2 commit 941dea7
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 941dea7

Please sign in to comment.