@cryptotaxi247 / kubo / commits / 809269399

go-ipfs-config: extract logging

License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>

Jeromy committed Sep 14, 2015 at 17:33 UTC 809269399ecd49cc509d86c40144a84bc1ebbc3c
1 file changed +2 -1
config/config.go
+2 -1
@@ -10,9 +10,10 @@ import (
10 "strings"
11
12 u "github.com/ipfs/go-ipfs/util"
13 + logging "github.com/ipfs/go-ipfs/vendor/go-log-v1.0.0"
14 )
15
15 -var log = u.Logger("config")
16 +var log = logging.Logger("config")
17
18 // Config is used to load IPFS config files.
19 type Config struct {