Commit fcc6f183 authored by obscuren's avatar obscuren

Changed level

parent 962255b3
package ethreact package ethreact
import ( import (
"github.com/ethereum/eth-go/ethlog"
"sync" "sync"
"github.com/ethereum/eth-go/ethlog"
) )
var logger = ethlog.NewLogger("REACTOR") var logger = ethlog.NewLogger("REACTOR")
...@@ -32,7 +33,7 @@ func (e *EventHandler) Post(event Event) { ...@@ -32,7 +33,7 @@ func (e *EventHandler) Post(event Event) {
select { select {
case ch <- event: case ch <- event:
default: default:
logger.Warnf("subscribing channel %d to event %s blocked. skipping\n", i, event.Name) logger.Debugf("subscribing channel %d to event %s blocked. skipping\n", i, event.Name)
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment