commit 31a8b7c4d3a085f2648d5dc8b8eb463939844e04
Author: Wim <wim@42.be>
Date: Thu Feb 22 18:56:21 2018 +0000
diff --git a/bridge/config/config.go b/bridge/config/config.go
index 09338f1..72ac4bb 100644
--- a/bridge/config/config.go
+++ b/bridge/config/config.go
@@ -606 +607 @@ type Protocol struct {
Buffer int // api
Charset string // irc
Debug bool // general
+ DebugLevel int // only for irc now
EditSuffix string // mattermost, slack, discord, telegram, gitter
EditDisable bool // mattermost, slack, discord, telegram, gitter
IconURL string // mattermost, slack
diff --git a/bridge/irc/irc.go b/bridge/irc/irc.go
index 027aa84..14ac952 100644
--- a/bridge/irc/irc.go
+++ b/bridge/irc/irc.go
@@ -1087 +1087 @@ func (b *Birc) Connect() error {
i.Handlers.Add(girc.RPL_WELCOME, b.handleNewConnection)
i.Handlers.Add(girc.RPL_ENDOFMOTD, b.handleOtherAuth)
- i.Handlers.Add("*", b.handleOther)
+ i.Handlers.Add(girc.ALL_EVENTS, b.handleOther)
go func() {
for {
if err := i.Connect(); err != nil {
@@ -1347 +1349 @@ func (b *Birc) Connect() error {
return fmt.Errorf("connection timed out")
}
//i.Debug = false
- i.Handlers.Clear("*")
+ if b.Config.DebugLevel == 0 {
+ i.Handlers.Clear(girc.ALL_EVENTS)
+ }
go b.doSend()
return nil
}
@@ -3076 +30913 @@ func (b *Birc) handleNotice(client *girc.Client, event girc.Event) {
}
func (b *Birc) handleOther(client *girc.Client, event girc.Event) {
+ if b.Config.DebugLevel == 1 {
+ if event.Command != "CLIENT_STATE_UPDATED" &&
+ event.Command != "CLIENT_GENERAL_UPDATED" {
+ flog.Debugf("%#v", event.String())
+ }
+ return
+ }
switch event.Command {
case "372", "375", "376", "250", "251", "252", "253", "254", "255", "265", "266", "002", "003", "004", "005":
return