Skip to content

Commit

Permalink
Merge pull request #84 from magicshui/master
Browse files Browse the repository at this point in the history
fix logrus path
  • Loading branch information
klizhentas authored Jul 10, 2017
2 parents 77cbabd + 658672d commit ddc3242
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion buffer/buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import (
"net/http"

"bufio"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/mailgun/multibuf"
"github.com/vulcand/oxy/utils"
"net"
Expand Down
2 changes: 1 addition & 1 deletion cbreaker/cbreaker.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"sync"
"time"

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

"github.com/mailgun/timetools"
"github.com/vulcand/oxy/memmetrics"
Expand Down
2 changes: 1 addition & 1 deletion cbreaker/effect.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net/url"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion cbreaker/fallback.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/url"
"strconv"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion cbreaker/predicates.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

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

Expand Down
2 changes: 1 addition & 1 deletion cbreaker/ratio.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

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

Expand Down
2 changes: 1 addition & 1 deletion connlimit/connlimit.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"sync"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion forward/fwd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"time"

"crypto/tls"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
"net"
"net/http/httputil"
Expand Down
2 changes: 1 addition & 1 deletion ratelimit/tokenlimiter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/mailgun/timetools"
"github.com/mailgun/ttlmap"
"github.com/vulcand/oxy/utils"
Expand Down
2 changes: 1 addition & 1 deletion roundrobin/rebalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/mailgun/timetools"
"github.com/vulcand/oxy/memmetrics"
"github.com/vulcand/oxy/utils"
Expand Down
2 changes: 1 addition & 1 deletion roundrobin/rr.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/url"
"sync"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion stream/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ package stream
import (
"net/http"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion stream/stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/vulcand/oxy/forward"
"github.com/vulcand/oxy/testutils"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
. "gopkg.in/check.v1"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion trace/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/vulcand/oxy/utils"
)

Expand Down
2 changes: 1 addition & 1 deletion utils/netutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net/url"
"reflect"

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

// ProxyWriter helps to capture response headers and status code
Expand Down

0 comments on commit ddc3242

Please sign in to comment.