forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
378 B
25 lines
378 B
package p2p
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
|
)
|
|
|
|
type testLogger struct{ t *testing.T }
|
|
|
|
func testlog(t *testing.T) testLogger {
|
|
logger.Reset()
|
|
l := testLogger{t}
|
|
logger.AddLogSystem(l)
|
|
return l
|
|
}
|
|
|
|
func (l testLogger) LogPrint(msg logger.LogMsg) {
|
|
l.t.Logf("%s", msg.String())
|
|
}
|
|
|
|
func (testLogger) detach() {
|
|
logger.Flush()
|
|
logger.Reset()
|
|
}
|
|
|