5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Add even more debug for irc (#1266)

This commit is contained in:
Wim 2020-10-20 00:33:15 +02:00 committed by GitHub
parent 075a84427f
commit 61569a8610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@ import (
"crypto/tls"
"fmt"
"hash/crc32"
"io/ioutil"
"net"
"sort"
"strconv"
@ -240,6 +241,11 @@ func (b *Birc) getClient() (*girc.Client, error) {
user = user[1:]
}
debug := ioutil.Discard
if b.GetInt("DebugLevel") == 2 {
debug = b.Log.Writer()
}
i := girc.New(girc.Config{
Server: server,
ServerPass: b.GetString("Password"),
@ -252,6 +258,7 @@ func (b *Birc) getClient() (*girc.Client, error) {
PingDelay: time.Minute,
// skip gIRC internal rate limiting, since we have our own throttling
AllowFlood: true,
Debug: debug,
})
return i, nil
}