Skip to content

Commit

Permalink
migrating dep repo
Browse files Browse the repository at this point in the history
  • Loading branch information
undiabler committed Jan 10, 2017
1 parent 63b7994 commit 734dc5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ For `YOUR_APP_NAME`, substitute a short string that will readily identify your a
```go
import (
"log/syslog"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"gopkg.in/polds/logrus-papertrail-hook.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion papertrail.go
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"time"

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

const (
Expand Down
4 changes: 2 additions & 2 deletions papertrail_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stvp/go-udp-testing"
)

Expand Down Expand Up @@ -106,7 +106,7 @@ func TestLevels(t *testing.T) {

tconn.buffer = []byte{}

logrus.Warn("hidden string3")
logrus.Warn("non hidden string3")

if len(tconn.buffer) == 0 {
t.Error("Error leveling (specified levels did not pass)")
Expand Down

0 comments on commit 734dc5a

Please sign in to comment.