1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 05:52:20 +08:00

logs: removed all log.Errors unhelpful to users

Let's save log.Error for things the user can take action on.
Moved all our diagnostics to log.Debug. We can ideally reduce them
even further.
This commit is contained in:
Juan Batiz-Benet
2015-02-03 01:06:07 -08:00
parent 61c97f80a3
commit 58f39687cf
29 changed files with 81 additions and 117 deletions

View File

@ -110,7 +110,7 @@ func (s *Node) Attr() fuse.Attr {
}
default:
log.Error("Invalid data type.")
log.Debug("Invalid data type.")
return fuse.Attr{}
}
}