MarshalIndent

This commit is contained in:
Neil Alexander 2020-06-09 15:59:13 +01:00
parent 4dc166a6ca
commit 8caeb01226

View file

@ -54,7 +54,7 @@ func Setup(instanceName string) (*Node, error) {
panic(err) panic(err)
} }
} else { } else {
j, err := json.Marshal(n.config) j, err := json.MarshalIndent(n.config, "", " ")
if err != nil { if err != nil {
panic(err) panic(err)
} }