Skip to content

Commit

Permalink
Fixed case issue with logrus (GH Bug flashmob#87) (flashmob#88)
Browse files Browse the repository at this point in the history
* Fixed case issue with logrus (GH Bug flashmob#87)
  • Loading branch information
ganglio authored and flashmob committed Mar 9, 2018
1 parent d2bf4f4 commit 84f99c6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cmd/guerrillad/root.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)

Expand Down
13 changes: 7 additions & 6 deletions glide.lock

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

3 changes: 2 additions & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package: github.com/flashmob/go-guerrilla
import:
- package: github.com/Sirupsen/logrus
- package: github.com/sirupsen/logrus
version: ~0.11.0
vcs: git
- package: github.com/garyburd/redigo
version: ~1.0.0
subpackages:
Expand Down
2 changes: 1 addition & 1 deletion log/hook.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package log

import (
"bufio"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io"
"io/ioutil"
"os"
Expand Down
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package log

import (
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io"
"io/ioutil"
"net"
Expand Down

0 comments on commit 84f99c6

Please sign in to comment.