diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2017-11-28 16:28:48 +0100 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2017-11-28 16:29:42 +0100 |
commit | ac6019137d5b10d02c7acac4f63fa22091b9933d (patch) | |
tree | 6b7cc4ecd56fce967bf5665292503459582a58ac /core | |
parent | 3f1edad4e6ba0a7876750aea55507fae14d8badf (diff) |
Fix imports for github.com/sirupsen/logrus
Change-Id: I84f2e45e5ff188a2a7a80cf69f607b44486c1754
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/core.go | 2 | ||||
-rw-r--r-- | core/msg_codec.go | 2 | ||||
-rw-r--r-- | core/notification_handler.go | 2 | ||||
-rw-r--r-- | core/request_handler.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/core/core.go b/core/core.go index a045e60..8c5456b 100644 --- a/core/core.go +++ b/core/core.go @@ -23,7 +23,7 @@ import ( "sync/atomic" "time" - logger "github.com/Sirupsen/logrus" + logger "github.com/sirupsen/logrus" "git.fd.io/govpp.git/adapter" "git.fd.io/govpp.git/api" diff --git a/core/msg_codec.go b/core/msg_codec.go index c72b7f3..89ccad4 100644 --- a/core/msg_codec.go +++ b/core/msg_codec.go @@ -20,7 +20,7 @@ import ( "fmt" "reflect" - logger "github.com/Sirupsen/logrus" + logger "github.com/sirupsen/logrus" "github.com/lunixbochs/struc" "git.fd.io/govpp.git/api" diff --git a/core/notification_handler.go b/core/notification_handler.go index 5cd132c..89c16a4 100644 --- a/core/notification_handler.go +++ b/core/notification_handler.go @@ -18,7 +18,7 @@ import ( "fmt" "reflect" - logger "github.com/Sirupsen/logrus" + logger "github.com/sirupsen/logrus" "git.fd.io/govpp.git/api" ) diff --git a/core/request_handler.go b/core/request_handler.go index e0235b9..c1683d3 100644 --- a/core/request_handler.go +++ b/core/request_handler.go @@ -19,7 +19,7 @@ import ( "fmt" "sync/atomic" - logger "github.com/Sirupsen/logrus" + logger "github.com/sirupsen/logrus" "git.fd.io/govpp.git/api" "git.fd.io/govpp.git/core/bin_api/vpe" |