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

loggers: set level

This commit is contained in:
Juan Batiz-Benet
2014-10-04 03:53:21 -07:00
parent 7e1cd59259
commit 0c8ae7674e
12 changed files with 21 additions and 26 deletions

View File

@ -9,7 +9,6 @@ import (
"path"
"sync"
logging "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/op/go-logging"
core "github.com/jbenet/go-ipfs/core"
"github.com/jbenet/go-ipfs/core/commands"
u "github.com/jbenet/go-ipfs/util"
@ -18,7 +17,7 @@ import (
ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
)
var log = u.Logger("daemon", logging.ERROR)
var log = u.Logger("daemon")
// LockFile is the filename of the daemon lock, relative to config dir
const LockFile = "daemon.lock"