From 9880f99ccb81477f1026db68c123aa548297c648 Mon Sep 17 00:00:00 2001 From: zelig Date: Mon, 23 Mar 2015 16:41:41 +0000 Subject: [PATCH] fix p2p/testlog_test --- p2p/testlog_test.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/p2p/testlog_test.go b/p2p/testlog_test.go index c524c154c..ac973bcf5 100644 --- a/p2p/testlog_test.go +++ b/p2p/testlog_test.go @@ -15,11 +15,8 @@ func testlog(t *testing.T) testLogger { return l } -func (testLogger) GetLogLevel() logger.LogLevel { return logger.DebugDetailLevel } -func (testLogger) SetLogLevel(logger.LogLevel) {} - -func (l testLogger) LogPrint(level logger.LogLevel, msg string) { - l.t.Logf("%s", msg) +func (l testLogger) LogPrint(msg logger.LogMsg) { + l.t.Logf("%s", msg.String()) } func (testLogger) detach() {