Skip to content

Commit

Permalink
Switch to new canonical logrus import path
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Sep 4, 2017
1 parent e707f78 commit f74cf76
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/emicklei/go-restful"
"github.com/muesli/smolder"
log "github.com/sirupsen/logrus"

bee "github.com/muesli/beehive/bees"

Expand Down
2 changes: 1 addition & 1 deletion beehive.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"os/signal"
"syscall"

log "github.com/Sirupsen/logrus"
"github.com/mattn/go-colorable"
log "github.com/sirupsen/logrus"

"github.com/muesli/beehive/api"
"github.com/muesli/beehive/app"
Expand Down
2 changes: 1 addition & 1 deletion bees/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"bytes"
"text/template"

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

"github.com/muesli/beehive/templatehelper"
)
Expand Down
2 changes: 1 addition & 1 deletion bees/bees.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
uuid "github.com/nu7hatch/gouuid"
log "github.com/sirupsen/logrus"
)

// BeeInterface is an interface all bees implement.
Expand Down
2 changes: 1 addition & 1 deletion bees/chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// Package bees is Beehive's central module system.
package bees

import log "github.com/Sirupsen/logrus"
import log "github.com/sirupsen/logrus"

// ChainElement is an element in a Chain
type ChainElement struct {
Expand Down
2 changes: 1 addition & 1 deletion bees/cronbee/cron/cronparser.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"strconv"
"strings"

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

// ParseInput parses the input and returns a pointer to the generated datastructure.
Expand Down
2 changes: 1 addition & 1 deletion bees/cronbee/cron/crontime.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
"container/list"
"time"

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

type crontime struct {
Expand Down
2 changes: 1 addition & 1 deletion bees/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// Package bees is Beehive's central module system.
package bees

import log "github.com/Sirupsen/logrus"
import log "github.com/sirupsen/logrus"

// An Event describes an event including its parameters.
type Event struct {
Expand Down
2 changes: 1 addition & 1 deletion bees/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
package bees

import (
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/muesli/beehive/filters"
)
Expand Down
2 changes: 1 addition & 1 deletion vendor
Submodule vendor updated 40 files
+0 −1 github.com/Sirupsen/logrus/.gitignore
+0 −12 github.com/Sirupsen/logrus/.travis.yml
+0 −109 github.com/Sirupsen/logrus/CHANGELOG.md
+0 −21 github.com/Sirupsen/logrus/LICENSE
+0 −504 github.com/Sirupsen/logrus/README.md
+0 −64 github.com/Sirupsen/logrus/alt_exit.go
+0 −74 github.com/Sirupsen/logrus/alt_exit_test.go
+0 −26 github.com/Sirupsen/logrus/doc.go
+0 −275 github.com/Sirupsen/logrus/entry.go
+0 −77 github.com/Sirupsen/logrus/entry_test.go
+0 −59 github.com/Sirupsen/logrus/examples/basic/basic.go
+0 −30 github.com/Sirupsen/logrus/examples/hook/hook.go
+0 −193 github.com/Sirupsen/logrus/exported.go
+0 −45 github.com/Sirupsen/logrus/formatter.go
+0 −101 github.com/Sirupsen/logrus/formatter_bench_test.go
+0 −122 github.com/Sirupsen/logrus/hook_test.go
+0 −34 github.com/Sirupsen/logrus/hooks.go
+0 −39 github.com/Sirupsen/logrus/hooks/syslog/README.md
+0 −54 github.com/Sirupsen/logrus/hooks/syslog/syslog.go
+0 −26 github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go
+0 −95 github.com/Sirupsen/logrus/hooks/test/test.go
+0 −39 github.com/Sirupsen/logrus/hooks/test/test_test.go
+0 −74 github.com/Sirupsen/logrus/json_formatter.go
+0 −199 github.com/Sirupsen/logrus/json_formatter_test.go
+0 −317 github.com/Sirupsen/logrus/logger.go
+0 −61 github.com/Sirupsen/logrus/logger_bench_test.go
+0 −143 github.com/Sirupsen/logrus/logrus.go
+0 −386 github.com/Sirupsen/logrus/logrus_test.go
+0 −10 github.com/Sirupsen/logrus/terminal_appengine.go
+0 −10 github.com/Sirupsen/logrus/terminal_bsd.go
+0 −14 github.com/Sirupsen/logrus/terminal_linux.go
+0 −28 github.com/Sirupsen/logrus/terminal_notwindows.go
+0 −21 github.com/Sirupsen/logrus/terminal_solaris.go
+0 −82 github.com/Sirupsen/logrus/terminal_windows.go
+0 −189 github.com/Sirupsen/logrus/text_formatter.go
+0 −161 github.com/Sirupsen/logrus/text_formatter_test.go
+0 −62 github.com/Sirupsen/logrus/writer.go
+1 −1 github.com/muesli/smolder/errors.go
+1 −1 github.com/muesli/smolder/resource.go
+1 −1 github.com/muesli/smolder/smolder.go

0 comments on commit f74cf76

Please sign in to comment.