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

@ -245,7 +245,7 @@ func TestNotFound(t *testing.T) {
ctx, _ = context.WithTimeout(ctx, time.Second*5)
v, err := d.GetValue(ctx, u.Key("hello"))
log.Debug("get value got %v", v)
log.Debugf("get value got %v", v)
if err != nil {
switch err {
case routing.ErrNotFound: