Skip to content

Commit

Permalink
fix log -> downcase sirupsen
Browse files Browse the repository at this point in the history
  • Loading branch information
nanu-c committed Aug 26, 2019
1 parent 1b6572b commit 4fd5f4f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion link.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package textsecure
import (
"time"

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

var code2 string
Expand Down
2 changes: 1 addition & 1 deletion rootca.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/x509"
"io/ioutil"

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

// rootPEM is the PEM formatted signing certificate of the Open Whisper Systems
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/aebruno/textsecure/protobuf"
"github.com/golang/protobuf/proto"

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

var (
Expand Down
2 changes: 1 addition & 1 deletion store.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/aebruno/textsecure/axolotl"
"golang.org/x/crypto/pbkdf2"

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

// store implements the PreKeyStore, SignedPreKeyStore,
Expand Down
2 changes: 1 addition & 1 deletion sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/binary"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/aebruno/textsecure/protobuf"
"github.com/golang/protobuf/proto"
)
Expand Down
2 changes: 1 addition & 1 deletion textsecure.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/golang/protobuf/proto"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/aebruno/textsecure/axolotl"
"github.com/aebruno/textsecure/protobuf"
)
Expand Down
2 changes: 1 addition & 1 deletion transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"net/url"
"time"

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

var transport transporter
Expand Down
4 changes: 2 additions & 2 deletions websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/golang/protobuf/proto"
"github.com/gorilla/websocket"

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

const (
Expand Down Expand Up @@ -50,7 +50,7 @@ func (c *Conn) connect(originURL, user, pass string) error {
wsURL := strings.Replace(originURL, "http", "ws", 1) + "?" + params
u, _ := url.Parse(wsURL)

log.Debugf("Websocket Connecting to %s", originURL)
log.Debugf("Websocket Connecting to %s with user %s and pass %s", originURL, user, pass)

var err error
d := &websocket.Dialer{
Expand Down

0 comments on commit 4fd5f4f

Please sign in to comment.