Merge pull request #769 from nathanleclaire/dump_util

Add flexible JSON dump debugging method
This commit is contained in:
Evan Hazlett 2015-03-11 19:05:03 -04:00
commit b01cd2d9b7
1 changed files with 13 additions and 0 deletions

View File

@ -1,12 +1,15 @@
package utils
import (
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"runtime"
"time"
log "github.com/Sirupsen/logrus"
)
func GetHomeDir() string {
@ -95,3 +98,13 @@ func WaitForSpecific(f func() bool, maxAttempts int, waitInterval time.Duration)
func WaitFor(f func() bool) error {
return WaitForSpecific(f, 60, 3*time.Second)
}
func DumpVal(vals ...interface{}) {
for _, val := range vals {
prettyJSON, err := json.MarshalIndent(val, "", " ")
if err != nil {
log.Fatal(err)
}
log.Debug(string(prettyJSON))
}
}