= 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

@ -28,7 +28,7 @@ import akka.actor.{ ExtendedActorSystem, ActorRef, Props }
*/
private[camel] class DefaultCamel(val system: ExtendedActorSystem) extends Camel {
val supervisor = system.actorOf(Props[CamelSupervisor], "camel-supervisor")
private[camel] implicit val log = Logging(system, "Camel")
private[camel] implicit val log = Logging(system, getClass.getName)
lazy val context: DefaultCamelContext = {
val ctx = settings.ContextProvider.getContext(system)