* some cluster logging improvements * most logger names are actually good, when using ActorLogging since config can be setup on the package (prefix) * override logSource when StageLogging is used * replace system.log with more specific logger
This commit is contained in:
parent
6557967d88
commit
4e8a5d333b
37 changed files with 214 additions and 67 deletions
|
|
@ -428,7 +428,7 @@ private[akka] class Controller(private var initialParticipants: Int, controllerP
|
|||
Server,
|
||||
controllerPort,
|
||||
settings.ServerSocketWorkerPoolSize,
|
||||
new ConductorHandler(settings.QueryTimeout, self, Logging(context.system, classOf[ConductorHandler].getName)))
|
||||
new ConductorHandler(settings.QueryTimeout, self, Logging(context.system, classOf[ConductorHandler])))
|
||||
|
||||
/*
|
||||
* Supervision of the BarrierCoordinator means to catch all his bad emotions
|
||||
|
|
|
|||
|
|
@ -179,7 +179,7 @@ private[akka] class ClientFSM(name: RoleName, controllerAddr: InetSocketAddress)
|
|||
settings.ReconnectBackoff,
|
||||
settings.ClientSocketWorkerPoolSize,
|
||||
self,
|
||||
Logging(context.system, classOf[PlayerHandler].getName),
|
||||
Logging(context.system, classOf[PlayerHandler]),
|
||||
context.system.scheduler)(context.dispatcher)
|
||||
|
||||
startWith(Connecting, Data(None, None))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue