Update vendor libraries and dendrite to s/Sirupsen/sirupsen/ (#304)

This commit is contained in:
Erik Johnston 2017-10-13 14:42:57 +01:00 committed by GitHub
parent d66244cb0a
commit 464fb5de1c
39 changed files with 41 additions and 41 deletions

View file

@ -3,8 +3,8 @@ Logging utilities for [logrus](https://github.com/Sirupsen/logrus).
To develop on this library, you need logrus on your GOPATH:
``go get github.com/Sirupsen/logrus``
``go get github.com/sirupsen/logrus``
You can then run its tests by running
``go test``

View file

@ -3,7 +3,7 @@ package dugong
import (
"compress/gzip"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io"
"os"
"path/filepath"

View file

@ -3,7 +3,7 @@ package dugong
import (
"bufio"
"encoding/json"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"io/ioutil"
"os"
"path/filepath"

View file

@ -3,7 +3,7 @@ package util
import (
"context"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
// contextKeys is a type alias for string to namespace Context keys per-package.

View file

@ -8,7 +8,7 @@ import (
"runtime/debug"
"time"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
// JSONResponse represents an HTTP response which contains a JSON body.

View file

@ -7,7 +7,7 @@ import (
"net/http/httptest"
"testing"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
type MockJSONRequestHandler struct {