= akka-*: full name space for loggers - resolve #16138

reflect logger name changes in the migration guide

fix typo in migration guide

fix typo in migration guide (xml)
This commit is contained in:
Andrei Pozolotin 2014-11-17 17:17:52 -06:00
parent 9203e0d316
commit d83acb92c3
14 changed files with 23 additions and 14 deletions

View file

@ -389,7 +389,7 @@ private[akka] class Controller(private var initialParticipants: Int, controllerP
val settings = TestConductor().Settings
val connection = RemoteConnection(Server, controllerPort, settings.ServerSocketWorkerPoolSize,
new ConductorHandler(settings.QueryTimeout, self, Logging(context.system, "ConductorHandler")))
new ConductorHandler(settings.QueryTimeout, self, Logging(context.system, classOf[ConductorHandler].getName)))
/*
* Supervision of the BarrierCoordinator means to catch all his bad emotions

View file

@ -151,7 +151,7 @@ private[akka] class ClientFSM(name: RoleName, controllerAddr: InetSocketAddress)
val settings = TestConductor().Settings
val handler = new PlayerHandler(controllerAddr, settings.ClientReconnects, settings.ReconnectBackoff,
settings.ClientSocketWorkerPoolSize, self, Logging(context.system, "PlayerHandler"),
settings.ClientSocketWorkerPoolSize, self, Logging(context.system, classOf[PlayerHandler].getName),
context.system.scheduler)(context.dispatcher)
startWith(Connecting, Data(None, None))