changed prettyprinting to use spaces as opposed to /t

This commit is contained in:
Marianne Feng 2018-03-20 18:20:51 -07:00
parent 509bff05a7
commit 723dd3cd1f
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {
var err error
if f.PrettyPrint {
serialized, err = json.MarshalIndent(data, "", "\t")
serialized, err = json.MarshalIndent(data, "", " ")
} else {
serialized, err = json.Marshal(data)
}