Skip to content

Commit

Permalink
Merge pull request #49 from Shapeways/ph-detailed-logs
Browse files Browse the repository at this point in the history
adding more detail to logs
  • Loading branch information
skx authored Aug 23, 2018
2 parents 2ef79dc + 2d64894 commit 13e0207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yaml_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func parseLogs(y *simpleyaml.Yaml, out *PuppetReport) error {
}

if len(m["message"]) > 0 {
logged = append(logged, m["message"])
logged = append(logged, m["source"] + " : " + m["message"])
}
}

Expand Down

0 comments on commit 13e0207

Please sign in to comment.