@cryptotaxi247 / kubo / commits / 02cb5f3b3

namesys/publisher: Drop the 'namesys: ' prefix for the Publish log

This is already handled by setup in namesys/routing.go: var log = u.Logger("namesys")

W. Trevor King committed May 7, 2015 at 15:08 UTC 02cb5f3b32f101076a16d29033c1b0aa8528c18a
1 file changed +1 -1
namesys/publisher.go
+1 -1
@@ -42,7 +42,7 @@ func NewRoutingPublisher(route routing.IpfsRouting) Publisher {
42 // Publish implements Publisher. Accepts a keypair and a value,
43 // and publishes it out to the routing system
44 func (p *ipnsPublisher) Publish(ctx context.Context, k ci.PrivKey, value path.Path) error {
45 - log.Debugf("namesys: Publish %s", value)
45 + log.Debugf("Publish %s", value)
46
47 data, err := createRoutingEntryData(k, value)
48 if err != nil {