Skip to content

Commit

Permalink
fix logger with logrus change
Browse files Browse the repository at this point in the history
  • Loading branch information
gondor committed Jun 16, 2017
1 parent 290042d commit cb3d9f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
package logger

import (
"github.com/Sirupsen/logrus"
"os"

"github.com/sirupsen/logrus"
)

const (
DefaultCategory = "_"
DefaultCategory = "_"
DefaultTimeFormat = "2006-01-02T15:04:05.000"
)

Expand Down
3 changes: 2 additions & 1 deletion logger/logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ package logger

import (
"testing"
"github.com/Sirupsen/logrus"

"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit cb3d9f0

Please sign in to comment.