You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the "fetch and build the livepeer node" step of the Installation section from the README, it errors out:
$ go get github.com/livepeer/go-livepeer/cmd/livepeer
package github.com/ethereum/go-ethereum/logger/glog: cannot find package "github.com/ethereum/go-ethereum/logger/glog" in any of:
/usr/local/Cellar/go/1.7.5/libexec/src/github.com/ethereum/go-ethereum/logger/glog (from $GOROOT)
/Users/pgorsira/Projects/go/src/github.com/ethereum/go-ethereum/logger/glog (from $GOPATH)
Appears the cause is go-ethereum switching from glog to log15 about a month ago. You can see that the logger package is no longer available and has been replaced by log.
The text was updated successfully, but these errors were encountered:
As a quick fix, I manually cloned https://github.com/livepeer/go-ethereum into my go workspace, moved src/github.com/livepeer/go-ethereum to src/github.com/ethereum/go-ethereum, and re-ran the go get from above. This worked.
I suspect a longer term solution would be to update the logging statements in go-livepeer to use the new log15-based logger that's implemented in the current version of go-ethereum. Does that seem appropriate?
Fixed via this commit to LPMS: livepeer/lpms@fed5e0d
It was accidentally referencing go-ethereum/glog when it should have been importing golang/glog. LPMS isn't meant to have any dependencies on ethereum.
When running the "fetch and build the livepeer node" step of the Installation section from the README, it errors out:
Appears the cause is go-ethereum switching from glog to log15 about a month ago. You can see that the
logger
package is no longer available and has been replaced bylog
.The text was updated successfully, but these errors were encountered: