Skip to content

Commit

Permalink
Update the import for logrus to use the updated username
Browse files Browse the repository at this point in the history
  • Loading branch information
mgleung committed Jul 31, 2017
1 parent 20f511e commit 3b5af34
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion driver/ipam_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"net"

log "github.com/Sirupsen/logrus"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"

"github.com/docker/go-plugins-helpers/ipam"
"github.com/projectcalico/libcalico-go/lib/api"
Expand Down
2 changes: 1 addition & 1 deletion driver/network_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/pkg/errors"
libcalicoErrors "github.com/projectcalico/libcalico-go/lib/errors"
log "github.com/sirupsen/logrus"

dockerClient "github.com/docker/docker/client"
"github.com/docker/go-plugins-helpers/network"
Expand Down
2 changes: 1 addition & 1 deletion glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package: github.com/projectcalico/libnetwork-plugin
import:
- package: github.com/Sirupsen/logrus
- package: github.com/sirupsen/logrus
- package: github.com/docker/docker
version: v17.03.0-ce
subpackages:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package main
import (
"os"

log "github.com/Sirupsen/logrus"
"github.com/docker/go-plugins-helpers/ipam"
"github.com/docker/go-plugins-helpers/network"
"github.com/projectcalico/libcalico-go/lib/api"
"github.com/projectcalico/libnetwork-plugin/driver"
log "github.com/sirupsen/logrus"

"flag"

Expand Down
2 changes: 1 addition & 1 deletion utils/log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package log
import (
"encoding/json"

logger "github.com/Sirupsen/logrus"
logger "github.com/sirupsen/logrus"
)

func JSONMessage(formattedMessage string, data interface{}) {
Expand Down
2 changes: 1 addition & 1 deletion utils/netns/netns.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"syscall"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/pkg/errors"
"github.com/vishvananda/netlink"
Expand Down

0 comments on commit 3b5af34

Please sign in to comment.