1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-09 17:22:21 +08:00

fix(all) log.Debug -> log.Debugf

This commit is contained in:
Brian Tiger Chow
2014-10-30 06:35:29 -07:00
parent b5fc3caea3
commit cea398b8a7
16 changed files with 30 additions and 30 deletions

View File

@ -22,7 +22,7 @@ type Resolver struct {
// path component as a hash (key) of the first node, then resolves
// all other components walking the links, with ResolveLinks.
func (s *Resolver) ResolvePath(fpath string) (*merkledag.Node, error) {
log.Debug("Resolve: '%s'", fpath)
log.Debugf("Resolve: '%s'", fpath)
fpath = path.Clean(fpath)
parts := strings.Split(fpath, "/")