From e9ccb49494d98b1150c35ec1041a5abab6d5f6f6 Mon Sep 17 00:00:00 2001 From: Julien BONACHERA Date: Thu, 17 Aug 2017 15:19:29 +0200 Subject: [PATCH] change logrus import name to lower-case one See https://github.com/sirupsen/logrus#case-sensitivity for explanations. --- README.md | 2 +- cluster.go | 2 +- gorethink.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 61fc41da..fa510ced 100644 --- a/README.md +++ b/README.md @@ -404,7 +404,7 @@ An good example of how to use these interfaces is in the [`types`](https://githu 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)`. -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: +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: ```go // Enabled diff --git a/cluster.go b/cluster.go index 64ff21f2..b1b8999e 100644 --- a/cluster.go +++ b/cluster.go @@ -7,7 +7,7 @@ import ( "sync/atomic" "time" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "github.com/cenkalti/backoff" "github.com/hailocab/go-hostpool" "golang.org/x/net/context" diff --git a/gorethink.go b/gorethink.go index d632c6e0..22614eab 100644 --- a/gorethink.go +++ b/gorethink.go @@ -4,7 +4,7 @@ import ( "io/ioutil" "reflect" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "gopkg.in/gorethink/gorethink.v3/encoding" )