From aa021c7cacdd901fe64ee9d944b78e0686587a66 Mon Sep 17 00:00:00 2001 From: Alex Bramley Date: Tue, 25 Sep 2012 23:42:37 +0100 Subject: [PATCH] Fix due to logging api change change. --- client/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/connection.go b/client/connection.go index 55d81fd..9c7676e 100644 --- a/client/connection.go +++ b/client/connection.go @@ -65,7 +65,7 @@ type Conn struct { // that you can add event handlers to it. See AddHandler() for details. func SimpleClient(nick string, args ...string) *Conn { r := event.NewRegistry() - l := logging.DefaultLogger + l := logging.InitFromFlags() ident := "goirc" name := "Powered by GoIRC"