1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00

Remove logging

This commit is contained in:
Asim 2016-04-28 00:07:25 +01:00
parent 65a880fadd
commit 1340e81235

View File

@ -18,8 +18,6 @@ func TestBroker(t *testing.T) {
count := 10
fn := func(p broker.Publication) error {
m := p.Message()
t.Logf("Received message id %s %+v for topic %s", m.Header["id"], m, p.Topic())
return nil
}
@ -37,7 +35,6 @@ func TestBroker(t *testing.T) {
Body: []byte(`hello world`),
}
t.Logf("Sending message %d %+v for topic %s", i, message, topic)
if err := b.Publish(topic, message); err != nil {
t.Fatalf("Unexpected error publishing %d", i)
}