Open 0b1kn00b opened 11 years ago
LoggingBus:70
for(i in bits.iterator()) { if (from <= i) subscribe(actor, LogLevelTypes.index(i)); } publish(Data(Debug, '$logName, logger ${name} started'));
Appears to be the root of the problem. publishEvent seems to be pushing an event to the ActorSystem (added in setupDefaultLoggers) which then repeats.
publishEvent
pull up node and do
var system = ActorSystem.create('system');
I'll have to look into this, I've written hardly any tests around the actor part.
in Log.log, this may be the issue, can't seem to get sense from it streamIn().dispatch(output);
LoggingBus:70
Appears to be the root of the problem.
publishEvent
seems to be pushing an event to the ActorSystem (added in setupDefaultLoggers) which then repeats.pull up node and do