From 85564a35fd507fca986065c38262a71764ed41a7 Mon Sep 17 00:00:00 2001 From: Duco van Amstel Date: Wed, 14 Nov 2018 21:43:52 +0000 Subject: Fix IRC line splitting. Closes #584 (#587) --- bridge/config/config.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'bridge/config') 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 } -- cgit v1.2.3