diff --git a/tools/please_shim/BUILD b/tools/please_shim/BUILD index ba45155fdd..e255e67dd4 100644 --- a/tools/please_shim/BUILD +++ b/tools/please_shim/BUILD @@ -14,6 +14,7 @@ go_binary( "///third_party/go/github.com_thought-machine_go-flags//:go-flags", "///third_party/go/gopkg.in_op_go-logging.v1//:go-logging.v1", "//src/cli", + "//src/cli/logging", "//src/core", "//src/fs", "//src/update", diff --git a/tools/please_shim/main.go b/tools/please_shim/main.go index 265433b40c..6a3fb1fc2e 100644 --- a/tools/please_shim/main.go +++ b/tools/please_shim/main.go @@ -10,16 +10,16 @@ import ( "syscall" "github.com/thought-machine/go-flags" - "gopkg.in/op/go-logging.v1" "github.com/thought-machine/please/src/cli" + "github.com/thought-machine/please/src/cli/logging" "github.com/thought-machine/please/src/core" "github.com/thought-machine/please/src/fs" "github.com/thought-machine/please/src/update" "github.com/thought-machine/please/src/version" ) -var log = logging.MustGetLogger("plz") +var log = logging.Log var opts struct { BuildFlags struct {