diff --git a/broadcast.go b/broadcast.go index 567c1a1..5120078 100644 --- a/broadcast.go +++ b/broadcast.go @@ -4,7 +4,7 @@ import ( "fmt" "sync" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" ) // Broadcaster sends events to multiple, reliable Sinks. The goal of this diff --git a/queue.go b/queue.go index a46091d..4bb770a 100644 --- a/queue.go +++ b/queue.go @@ -4,7 +4,7 @@ import ( "container/list" "sync" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" ) // Queue accepts all messages into a queue for asynchronous consumption diff --git a/retry.go b/retry.go index 8f6c37c..2df55d2 100644 --- a/retry.go +++ b/retry.go @@ -7,7 +7,7 @@ import ( "sync/atomic" "time" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" ) // RetryingSink retries the write until success or an ErrSinkClosed is