From da8e415ae1fb899df4fb05a8a81934e205fb4765 Mon Sep 17 00:00:00 2001 From: Duco van Amstel Date: Wed, 26 Dec 2018 15:16:09 +0100 Subject: Use logrus imports instead of log (#662) --- bridge/sshchat/sshchat.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bridge/sshchat') diff --git a/bridge/sshchat/sshchat.go b/bridge/sshchat/sshchat.go index fc3145e6..ca427a81 100644 --- a/bridge/sshchat/sshchat.go +++ b/bridge/sshchat/sshchat.go @@ -9,7 +9,7 @@ import ( "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/bridge/helper" "github.com/shazow/ssh-chat/sshd" - log "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus" ) type Bsshchat struct { @@ -131,7 +131,7 @@ func (b *Bsshchat) handleSSHChat() error { res := strings.Split(stripPrompt(b.r.Text()), ":") if res[0] == "-> Set theme" { wait = false - log.Debugf("mono found, allowing") + logrus.Debugf("mono found, allowing") continue } if !wait { -- cgit v1.2.3