summaryrefslogtreecommitdiffstats
path: root/bridge/bridge.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/bridge.go')
-rw-r--r--bridge/bridge.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/bridge.go b/bridge/bridge.go
index 8c88305c..a57eedbd 100644
--- a/bridge/bridge.go
+++ b/bridge/bridge.go
@@ -100,7 +100,7 @@ func (b *Bridge) JoinChannels() error {
func (b *Bridge) joinChannels(channels map[string]config.ChannelInfo, exists map[string]bool) error {
for ID, channel := range channels {
if !exists[ID] {
- log.Infof("%s: joining %s (%s)", b.Account, channel.Name, ID)
+ log.Infof("%s: joining %s (ID: %s)", b.Account, channel.Name, ID)
err := b.JoinChannel(channel)
if err != nil {
return err