Skip to content

Commit

Permalink
Sets all import paths of "sirupsen" to "Sirupsen"
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Weiz committed May 18, 2017
1 parent 5e5dc89 commit 0ae413d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion alt_exit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var testprog = []byte(`
package main
import (
"github.com/sirupsen/logrus"
"github.com/Sirupsen/logrus"
"flag"
"fmt"
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The simplest way to use Logrus is simply the package-level exported logger:
package main
import (
log "github.com/sirupsen/logrus"
log "github.com/Sirupsen/logrus"
)
func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/basic.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"
// "os"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/hook/hook.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"
"gopkg.in/gemnasium/logrus-airbrake-hook.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion hooks/null/null.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/ioutil"
"sync"

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

// Hook is a hook designed for dealing with logs in test scenarios.
Expand Down
2 changes: 1 addition & 1 deletion hooks/null/null_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package null

import (
"github.com/sirupsen/logrus"
"github.com/Sirupsen/logrus"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down

0 comments on commit 0ae413d

Please sign in to comment.