Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
Bug 1452095 - don't log every file in worker cache on worker startup
Browse files Browse the repository at this point in the history
  • Loading branch information
petemoore committed May 2, 2018
1 parent f2ddacb commit fd23206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -1334,7 +1334,7 @@ func loadFromJSONFile(obj interface{}, filename string) (err error) {
d := json.NewDecoder(f)
err = d.Decode(obj)
if err == nil {
log.Printf("Loaded file %v into object:\n%#v\n", filename, obj)
log.Printf("Loaded file %v", filename)
} else {
log.Printf("Could not load file %v into object %T - is it json?", filename, obj)
}
Expand Down

0 comments on commit fd23206

Please sign in to comment.