Skip to content

Commit

Permalink
Merge pull request #30 from ipfs/fix/issue-29
Browse files Browse the repository at this point in the history
downgrade over-eager Errorf log to Debugf
  • Loading branch information
frrist committed Apr 30, 2018
2 parents 804754e + b3fa3d9 commit 0ef8170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func DeepMerge(b, a Metadata) Metadata {
if err != nil {
// if the new value is not meta. just overwrite the dest vaue
if out[k] != nil {
log.Errorf("Over writting key: %s, old: %s, new: %s", k, out[k], v)
log.Debugf("Overwriting key: %s, old: %s, new: %s", k, out[k], v)
}
out[k] = v
continue
Expand Down

0 comments on commit 0ef8170

Please sign in to comment.