Clone this repo:
  1. e693023 Update CI to use currently-supported Go versions by Kyle Lemons · 3 years, 8 months ago master
  2. 7a00353 Set the CI build targets for tri-arch by Kyle Lemons · 3 years, 8 months ago
  3. 64c05a1 Update .travis.yml by santosh653 · 3 years, 8 months ago
  4. fa7b53c pretty: Detect bad nil-calls of Stringer etc by Kyle Lemons · 4 years, 11 months ago
  5. bde9f3c travis: Remove support for versions of go before strings.Builder by Kyle Lemons · 4 years, 11 months ago

Pretty Printing for Go

godebug build status

Have you ever wanted to get a pretty-printed version of a Go data structure, complete with indentation? I have found this especially useful in unit tests and in debugging my code, and thus godebug was born!

Quick Examples

By default, pretty will write out a very compact representation of a data structure. From the Print example:

{Name:     "Spaceship Heart of Gold",
 Crew:     {Arthur Dent:       "Along for the Ride",
            Ford Prefect:      "A Hoopy Frood",
            Trillian:          "Human",
            Zaphod Beeblebrox: "Galactic President"},
 Androids: 1,
 Stolen:   true}

It can also produce a much more verbose, one-item-per-line representation suitable for computing diffs. See the documentation for more examples and customization.

Documentation

Documentation for this package is available at godoc.org:

  • Pretty: godoc for godebug/pretty
  • Diff: godoc for godebug/diff

Installation

These packages are available via go get:

$ go get -u github.com/kylelemons/godebug/{pretty,diff}

Other Packages

If godebug/pretty is not granular enough, I highly recommend checking out cmp or go-spew.