Skip to content

Commit 3fe878d

Browse files
committed
fix: use renamed logrus
1 parent 5791b86 commit 3fe878d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

netshare/drivers/ceph.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strings"
77

8-
log "github.com/Sirupsen/logrus"
8+
log "github.com/sirupsen/logrus"
99
"github.com/docker/go-plugins-helpers/volume"
1010
)
1111

netshare/drivers/cifs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"strings"
88

9-
log "github.com/Sirupsen/logrus"
9+
log "github.com/sirupsen/logrus"
1010
"github.com/dickeyxxx/netrc"
1111
"github.com/docker/go-plugins-helpers/volume"
1212
)

netshare/drivers/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package drivers
33
import (
44
"sync"
55

6-
log "github.com/Sirupsen/logrus"
6+
log "github.com/sirupsen/logrus"
77
"github.com/docker/go-plugins-helpers/volume"
88
)
99

netshare/drivers/efs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"regexp"
77
"strings"
88

9-
log "github.com/Sirupsen/logrus"
9+
log "github.com/sirupsen/logrus"
1010
"github.com/docker/go-plugins-helpers/volume"
1111
)
1212

netshare/drivers/mounts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package drivers
22

33
import (
44
"errors"
5-
log "github.com/Sirupsen/logrus"
5+
log "github.com/sirupsen/logrus"
66
"github.com/docker/go-plugins-helpers/volume"
77
"strings"
88
)

netshare/drivers/nfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
log "github.com/Sirupsen/logrus"
8+
log "github.com/sirupsen/logrus"
99
"github.com/docker/go-plugins-helpers/volume"
1010
)
1111

netshare/netshare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99

1010
"github.com/ContainX/docker-volume-netshare/netshare/drivers"
11-
log "github.com/Sirupsen/logrus"
11+
log "github.com/sirupsen/logrus"
1212
"github.com/docker/go-plugins-helpers/volume"
1313
"github.com/spf13/cobra"
1414
)

0 commit comments

Comments
 (0)