Commit cf8fb87d authored by Brian Tiger Chow's avatar Brian Tiger Chow

refactor(errors) debugerror -> errors

License: MIT
Signed-off-by: default avatarBrian Tiger Chow <brian@perfmode.com>
parent 5fa31f8e
......@@ -16,7 +16,7 @@ import (
chunk "github.com/jbenet/go-ipfs/importer/chunk"
peer "github.com/jbenet/go-ipfs/peer"
u "github.com/jbenet/go-ipfs/util"
errors "github.com/jbenet/go-ipfs/util/debugerror"
errors "github.com/jbenet/go-ipfs/util/errors"
)
var initCmd = &cmds.Command{
......
......@@ -21,7 +21,7 @@ import (
daemon "github.com/jbenet/go-ipfs/daemon2"
updates "github.com/jbenet/go-ipfs/updates"
u "github.com/jbenet/go-ipfs/util"
errors "github.com/jbenet/go-ipfs/util/debugerror"
errors "github.com/jbenet/go-ipfs/util/errors"
eventlog "github.com/jbenet/go-ipfs/util/eventlog"
)
......
......@@ -9,7 +9,7 @@ import (
"path/filepath"
u "github.com/jbenet/go-ipfs/util"
errors "github.com/jbenet/go-ipfs/util/debugerror"
errors "github.com/jbenet/go-ipfs/util/errors"
)
var log = u.Logger("config")
......
// package debugerror provides a way to augment errors with additional
// package errors provides ways to augment errors with additional
// information to allow for easier debugging.
package debugerror
package errors
import (
"errors"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment