Merge pull request #62 from cristoper/patch-1
PrettyPrint should conform to Exporter interface
This commit is contained in:
commit
555cdee597
@ -9,7 +9,7 @@ import (
|
|||||||
type PrettyPrint struct{}
|
type PrettyPrint struct{}
|
||||||
|
|
||||||
// Export logs exported data to console as pretty printed
|
// Export logs exported data to console as pretty printed
|
||||||
func (*PrettyPrint) Export(exports chan interface{}) {
|
func (*PrettyPrint) Export(exports chan interface{}) error {
|
||||||
for res := range exports {
|
for res := range exports {
|
||||||
dat, err := json.MarshalIndent(res, "", " ")
|
dat, err := json.MarshalIndent(res, "", " ")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -17,4 +17,5 @@ func (*PrettyPrint) Export(exports chan interface{}) {
|
|||||||
}
|
}
|
||||||
fmt.Println(string(dat))
|
fmt.Println(string(dat))
|
||||||
}
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user