Merge pull request #3 from AkihiroSuda/fix-du

buildctl: du: use spew dump
docker-18.09
Tõnis Tiigi 2017-06-12 17:58:36 -07:00 committed by GitHub
commit ca57761b02
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"context"
"log"
"github.com/davecgh/go-spew/spew"
"github.com/urfave/cli"
)
@ -24,7 +25,7 @@ func diskUsage(clicontext *cli.Context) error {
return err
}
log.Printf("%+v", du)
log.Printf(spew.Sdump(du))
return nil
}