Skip to content

Commit a7af340

Browse files
authored
Merge pull request #423 from jbonachera/master
change logrus import name to lower-case one
2 parents e31dda1 + e9ccb49 commit a7af340

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ An good example of how to use these interfaces is in the [`types`](https://githu
404404

405405
By default the driver logs are disabled however when enabled the driver will log errors when it fails to connect to the database. If you would like more verbose error logging you can call `r.SetVerbose(true)`.
406406

407-
Alternatively if you wish to modify the logging behaviour you can modify the logger provided by `github.com/Sirupsen/logrus`. For example the following code completely disable the logger:
407+
Alternatively if you wish to modify the logging behaviour you can modify the logger provided by `github.com/sirupsen/logrus`. For example the following code completely disable the logger:
408408

409409
```go
410410
// Enabled

cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sync/atomic"
88
"time"
99

10-
"github.com/Sirupsen/logrus"
10+
"github.com/sirupsen/logrus"
1111
"github.com/cenkalti/backoff"
1212
"github.com/hailocab/go-hostpool"
1313
"golang.org/x/net/context"

gorethink.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"io/ioutil"
55
"reflect"
66

7-
"github.com/Sirupsen/logrus"
7+
"github.com/sirupsen/logrus"
88

99
"gopkg.in/gorethink/gorethink.v3/encoding"
1010
)

0 commit comments

Comments
 (0)