diff options
author | Duco van Amstel <duco.vanamstel@gmail.com> | 2018-12-26 15:16:09 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2018-12-26 15:16:09 +0100 |
commit | da8e415ae1fb899df4fb05a8a81934e205fb4765 (patch) | |
tree | fca9a1b2b26c9971cf0e21e8e53ac8014cd77ccf /bridge/helper | |
parent | 1b834c6858d6fdb8927f6a75fad2116d6d2bd394 (diff) | |
download | matterbridge-msglm-da8e415ae1fb899df4fb05a8a81934e205fb4765.tar.gz matterbridge-msglm-da8e415ae1fb899df4fb05a8a81934e205fb4765.tar.bz2 matterbridge-msglm-da8e415ae1fb899df4fb05a8a81934e205fb4765.zip |
Use logrus imports instead of log (#662)
Diffstat (limited to 'bridge/helper')
-rw-r--r-- | bridge/helper/helper.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge/helper/helper.go b/bridge/helper/helper.go index c1a48ce8..d9acb3d5 100644 --- a/bridge/helper/helper.go +++ b/bridge/helper/helper.go @@ -11,7 +11,7 @@ import ( "unicode/utf8" "github.com/42wim/matterbridge/bridge/config" - log "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus" ) func DownloadFile(url string) (*[]byte, error) { @@ -97,7 +97,7 @@ func GetAvatar(av map[string]string, userid string, general *config.Protocol) st return "" } -func HandleDownloadSize(flog *log.Entry, msg *config.Message, name string, size int64, general *config.Protocol) error { +func HandleDownloadSize(flog *logrus.Entry, msg *config.Message, name string, size int64, general *config.Protocol) error { // check blacklist here for _, entry := range general.MediaDownloadBlackList { if entry != "" { @@ -120,7 +120,7 @@ func HandleDownloadSize(flog *log.Entry, msg *config.Message, name string, size return nil } -func HandleDownloadData(flog *log.Entry, msg *config.Message, name, comment, url string, data *[]byte, general *config.Protocol) { +func HandleDownloadData(flog *logrus.Entry, msg *config.Message, name, comment, url string, data *[]byte, general *config.Protocol) { var avatar bool flog.Debugf("Download OK %#v %#v", name, len(*data)) if msg.Event == config.EventAvatarDownload { |