diff options
author | Wim <wim@42.be> | 2018-01-26 21:54:09 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2018-01-26 21:54:09 +0100 |
commit | 6a047f87229c277b72a1a54b18dc39abe1dbdca4 (patch) | |
tree | 3ea52d700ee29e2e51933dec565c641f5bdd0ad2 /bridge/xmpp | |
parent | 6523494e83a97ccddfa5993d979bbac470fb09c5 (diff) | |
download | matterbridge-msglm-6a047f87229c277b72a1a54b18dc39abe1dbdca4.tar.gz matterbridge-msglm-6a047f87229c277b72a1a54b18dc39abe1dbdca4.tar.bz2 matterbridge-msglm-6a047f87229c277b72a1a54b18dc39abe1dbdca4.zip |
Print only debug messages when specified (xmpp). Closes #345
Diffstat (limited to 'bridge/xmpp')
-rw-r--r-- | bridge/xmpp/xmpp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 0ad7699c..63a1048e 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -110,7 +110,7 @@ func (b *Bxmpp) createXMPP() (*xmpp.Client, error) { TLSConfig: tc, //StartTLS: false, - Debug: true, + Debug: b.General.Debug, Session: true, Status: "", StatusMessage: "", |