diff options
author | Duco van Amstel <duco.vanamstel@gmail.com> | 2018-11-14 21:43:52 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2018-11-14 22:43:52 +0100 |
commit | 85564a35fd507fca986065c38262a71764ed41a7 (patch) | |
tree | de3f51e4ec07b3be3b03197acfbbf31f3d69cb74 /bridge/config | |
parent | 09713d40ba8b78671964efe83cdd1da124d44114 (diff) | |
download | matterbridge-msglm-85564a35fd507fca986065c38262a71764ed41a7.tar.gz matterbridge-msglm-85564a35fd507fca986065c38262a71764ed41a7.tar.bz2 matterbridge-msglm-85564a35fd507fca986065c38262a71764ed41a7.zip |
Fix IRC line splitting. Closes #584 (#587)
Diffstat (limited to 'bridge/config')
-rw-r--r-- | bridge/config/config.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go index 258401db..74f7f531 100644 --- a/bridge/config/config.go +++ b/bridge/config/config.go @@ -2,9 +2,7 @@ package config import ( "bytes" - "fmt" "io/ioutil" - "os" "strings" "sync" "time" @@ -316,7 +314,6 @@ type TestConfig struct { func (c *TestConfig) GetBool(key string) (bool, bool) { val, ok := c.Overrides[key] - fmt.Fprintln(os.Stderr, "DEBUG:", c.Overrides, key, ok, val) if ok { return val.(bool), true } |