Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update due to rename of github account #547

Merged
merged 1 commit into from
Jun 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions hooks/syslog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
```go
import (
"log/syslog"
"github.com/Sirupsen/logrus"
logrus_syslog "github.com/Sirupsen/logrus/hooks/syslog"
"github.com/sirupsen/logrus"
logrus_syslog "github.com/sirupsen/logrus/hooks/syslog"
)

func main() {
Expand All @@ -24,8 +24,8 @@ If you want to connect to local syslog (Ex. "/dev/log" or "/var/run/syslog" or "
```go
import (
"log/syslog"
"github.com/Sirupsen/logrus"
logrus_syslog "github.com/Sirupsen/logrus/hooks/syslog"
"github.com/sirupsen/logrus"
logrus_syslog "github.com/sirupsen/logrus/hooks/syslog"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion hooks/syslog/syslog.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package logrus_syslog

import (
"fmt"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"log/syslog"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion hooks/syslog/syslog_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package logrus_syslog

import (
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"log/syslog"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion hooks/test/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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/test/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package test
import (
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

Expand Down