Skip to content

Commit

Permalink
Merge pull request #157 from antmat/master
Browse files Browse the repository at this point in the history
fix: use renamed logrus
  • Loading branch information
gondor committed Mar 15, 2018
2 parents 5791b86 + 3fe878d commit c90abe3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion netshare/drivers/ceph.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
)

Expand Down
2 changes: 1 addition & 1 deletion netshare/drivers/cifs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/dickeyxxx/netrc"
"github.com/docker/go-plugins-helpers/volume"
)
Expand Down
2 changes: 1 addition & 1 deletion netshare/drivers/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package drivers
import (
"sync"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
)

Expand Down
2 changes: 1 addition & 1 deletion netshare/drivers/efs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"regexp"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
)

Expand Down
2 changes: 1 addition & 1 deletion netshare/drivers/mounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package drivers

import (
"errors"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion netshare/drivers/nfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"path/filepath"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
)

Expand Down
2 changes: 1 addition & 1 deletion netshare/netshare.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"syscall"

"github.com/ContainX/docker-volume-netshare/netshare/drivers"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/docker/go-plugins-helpers/volume"
"github.com/spf13/cobra"
)
Expand Down

0 comments on commit c90abe3

Please sign in to comment.