diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-06-07 16:00:34 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-06-07 21:04:11 +0900 |
commit | d65df0b0452e2acb3234836507ba07107035d572 (patch) | |
tree | fd7457ceaed407e67e2e8a25f693a12c993efd31 /gobgpd | |
parent | 452eb2a4f679b26a6aa71761160ba9ec43d97ffc (diff) |
replace github.com/Sirupsen/logrus with github.com/sirupsen/logrus
The usage of "github.com/sirupsen/logrus" is recommended.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'gobgpd')
-rw-r--r-- | gobgpd/main.go | 2 | ||||
-rw-r--r-- | gobgpd/util.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gobgpd/main.go b/gobgpd/main.go index c80faa84..f1697715 100644 --- a/gobgpd/main.go +++ b/gobgpd/main.go @@ -24,7 +24,6 @@ import ( "runtime" "syscall" - log "github.com/Sirupsen/logrus" "github.com/jessevdk/go-flags" p "github.com/kr/pretty" api "github.com/osrg/gobgp/api" @@ -32,6 +31,7 @@ import ( "github.com/osrg/gobgp/packet/bgp" "github.com/osrg/gobgp/server" "github.com/osrg/gobgp/table" + log "github.com/sirupsen/logrus" "google.golang.org/grpc" "google.golang.org/grpc/credentials" ) diff --git a/gobgpd/util.go b/gobgpd/util.go index 577363d3..25e9b888 100644 --- a/gobgpd/util.go +++ b/gobgpd/util.go @@ -26,8 +26,8 @@ import ( "strings" "syscall" - log "github.com/Sirupsen/logrus" - "github.com/Sirupsen/logrus/hooks/syslog" + log "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/syslog" ) func init() { |