Skip to content

Commit ef1b02d

Browse files
Merge pull request #30 from qa-dev/fix_logrus_case
fix lщgrus case
2 parents 47c1847 + 2bb1630 commit ef1b02d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+983
-527
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package config
33
import (
44
"encoding/json"
55
"errors"
6-
log "github.com/Sirupsen/logrus"
6+
log "github.com/sirupsen/logrus"
77
"github.com/qa-dev/jsonwire-grid/pool/metrics"
88
"os"
99
)

handlers/apiProxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net/http"
55
"net/url"
66

7-
log "github.com/Sirupsen/logrus"
7+
log "github.com/sirupsen/logrus"
88
"github.com/qa-dev/jsonwire-grid/pool"
99
)
1010

handlers/createSession.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"encoding/json"
66
"errors"
77
"fmt"
8-
log "github.com/Sirupsen/logrus"
8+
log "github.com/sirupsen/logrus"
99
"github.com/qa-dev/jsonwire-grid/jsonwire"
1010
"github.com/qa-dev/jsonwire-grid/pool"
1111
"github.com/qa-dev/jsonwire-grid/pool/capabilities"

handlers/registerNode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"strconv"
88

9-
log "github.com/Sirupsen/logrus"
9+
log "github.com/sirupsen/logrus"
1010
"github.com/qa-dev/jsonwire-grid/jsonwire"
1111
"github.com/qa-dev/jsonwire-grid/pool"
1212
"github.com/qa-dev/jsonwire-grid/pool/capabilities"

handlers/useSession.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/url"
77
"regexp"
88

9-
log "github.com/Sirupsen/logrus"
9+
log "github.com/sirupsen/logrus"
1010
"github.com/qa-dev/jsonwire-grid/pool"
1111
)
1212

logger/logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package logger
22

33
import (
4-
"github.com/Sirupsen/logrus"
4+
"github.com/sirupsen/logrus"
55

66
"fmt"
77
"github.com/qa-dev/jsonwire-grid/config"

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"context"
55
"fmt"
6-
log "github.com/Sirupsen/logrus"
6+
log "github.com/sirupsen/logrus"
77
"github.com/qa-dev/jsonwire-grid/config"
88
"github.com/qa-dev/jsonwire-grid/handlers"
99
"github.com/qa-dev/jsonwire-grid/logger"

middleware/statsd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66

77
"fmt"
8-
"github.com/Sirupsen/logrus"
8+
"github.com/sirupsen/logrus"
99
"gopkg.in/alexcesaro/statsd.v2"
1010
"regexp"
1111
)

middleware/wrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package middleware
33
import (
44
"net/http"
55
"runtime/debug"
6-
"github.com/Sirupsen/logrus"
6+
"github.com/sirupsen/logrus"
77
)
88

99
type Wrap struct {

middleware/wrap_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package middleware
22

33
import (
44
"testing"
5-
"github.com/Sirupsen/logrus"
5+
"github.com/sirupsen/logrus"
66
"net/http"
77
"github.com/stretchr/testify/assert"
88
)

0 commit comments

Comments
 (0)