cmd: fix log contexts (#21077)

This commit is contained in:
Satpal 2020-05-13 16:34:24 +01:00 committed by GitHub
parent 46698d7931
commit 677724af0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -978,7 +978,7 @@ func GenDoc(ctx *cli.Context) {
if data, err := json.MarshalIndent(v, "", " "); err == nil { if data, err := json.MarshalIndent(v, "", " "); err == nil {
output = append(output, fmt.Sprintf("### %s\n\n%s\n\nExample:\n```json\n%s\n```", name, desc, data)) output = append(output, fmt.Sprintf("### %s\n\n%s\n\nExample:\n```json\n%s\n```", name, desc, data))
} else { } else {
log.Error("Error generating output", err) log.Error("Error generating output", "err", err)
} }
} }
) )

View File

@ -179,7 +179,7 @@ func (w *wizard) importGenesis() {
// Parse the genesis file and inject it successful // Parse the genesis file and inject it successful
var genesis core.Genesis var genesis core.Genesis
if err := json.NewDecoder(reader).Decode(&genesis); err != nil { if err := json.NewDecoder(reader).Decode(&genesis); err != nil {
log.Error("Invalid genesis spec: %v", err) log.Error("Invalid genesis spec", "err", err)
return return
} }
log.Info("Imported genesis block") log.Info("Imported genesis block")