Skip to content

Commit

Permalink
trying to fix sirupsen case issue
Browse files Browse the repository at this point in the history
  • Loading branch information
opalmer committed Sep 10, 2017
1 parent 0700575 commit 40fb0e1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


[[constraint]]
name = "github.com/Sirupsen/logrus"
name = "github.com/sirupsen/logrus"
version = "1.0.3"

[[constraint]]
Expand Down
2 changes: 1 addition & 1 deletion examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package logrusutil_test
import (
"testing"

"github.com/Sirupsen/logrus"
"github.com/opalmer/logrusutil"
"github.com/sirupsen/logrus"
)

func TestExampleConfigureRoot(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion hooks.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package logrusutil

import (
"github.com/Sirupsen/logrus"
"github.com/go-stack/stack"
"github.com/sirupsen/logrus"
)

// CallerHook is a logrus hook which applies information
Expand Down
2 changes: 1 addition & 1 deletion hooks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package logrusutil_test
import (
"testing"

"github.com/Sirupsen/logrus"
"github.com/opalmer/logrusutil"
"github.com/sirupsen/logrus"
)

func TestCallerHook_Fire_Disabled(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"io/ioutil"

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

var (
Expand Down
2 changes: 1 addition & 1 deletion setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"io/ioutil"
"testing"

"github.com/Sirupsen/logrus"
"github.com/opalmer/logrusutil"
"github.com/sirupsen/logrus"
)

func TestConfigureRoot_ErrLevelNotProvided_Level(t *testing.T) {
Expand Down

0 comments on commit 40fb0e1

Please sign in to comment.