From 13855ff77bb04df4829838303994dd23ef58fd02 Mon Sep 17 00:00:00 2001 From: Alex Bramley Date: Tue, 25 Sep 2012 22:39:02 +0100 Subject: [PATCH] Fix due to logging api change. --- client/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/connection.go b/client/connection.go index 50cbb5d..55d81fd 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.NewFromFlags() + l := logging.DefaultLogger ident := "goirc" name := "Powered by GoIRC"