summaryrefslogtreecommitdiffstats
path: root/bridge/irc/handlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/irc/handlers.go')
-rw-r--r--bridge/irc/handlers.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/bridge/irc/handlers.go b/bridge/irc/handlers.go
index 1d260071..f0e54928 100644
--- a/bridge/irc/handlers.go
+++ b/bridge/irc/handlers.go
@@ -91,8 +91,13 @@ func (b *Birc) handleJoinPart(client *girc.Client, event girc.Event) {
if b.GetBool("nosendjoinpart") {
return
}
- b.Log.Debugf("<= Sending JOIN_LEAVE event from %s to gateway", b.Account)
msg := config.Message{Username: "system", Text: event.Source.Name + " " + strings.ToLower(event.Command) + "s", Channel: channel, Account: b.Account, Event: config.EventJoinLeave}
+ if b.GetBool("verbosejoinpart") {
+ b.Log.Debugf("<= Sending verbose JOIN_LEAVE event from %s to gateway", b.Account)
+ msg = config.Message{Username: "system", Text: event.Source.Name + " (" + event.Source.Ident + "@" + event.Source.Host + ") " + strings.ToLower(event.Command) + "s", Channel: channel, Account: b.Account, Event: config.EventJoinLeave}
+ } else {
+ b.Log.Debugf("<= Sending JOIN_LEAVE event from %s to gateway", b.Account)
+ }
b.Log.Debugf("<= Message is %#v", msg)
b.Remote <- msg
return