Skip to content

Commit

Permalink
Update logrus package path (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ripcurld0 authored May 17, 2017
1 parent c780422 commit d2c0ecc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## 0.4

* Update the name of the package from `logrus_logstash` to `logrustash`.
* Update the name of the package from `logrus_logstash` to `logrustash`
* Add TimeFormat to Hook
* Replace the old logrus package path: `github.com/Sirupsen/logrus` with `github.com/sirupsen/logrus`

## 0.3

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Use this hook to send the logs to [Logstash](https://www.elastic.co/products/log
package main

import (
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/bshuster-repo/logrus-logstash-hook"
)

Expand Down
2 changes: 1 addition & 1 deletion logstash.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net"
"strings"

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

// Hook represents a connection to a Logstash instance
Expand Down
2 changes: 1 addition & 1 deletion logstash_formatter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

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

// Formatter generates json in logstash format.
Expand Down
2 changes: 1 addition & 1 deletion logstash_formatter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/url"
"testing"

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

func TestLogstashFormatter(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion logstash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

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

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

0 comments on commit d2c0ecc

Please sign in to comment.