diff --git a/akka-docs/project/migration-guide-2.0.x-2.1.x.rst b/akka-docs/project/migration-guide-2.0.x-2.1.x.rst index 7157487bd2..772e5ea784 100644 --- a/akka-docs/project/migration-guide-2.0.x-2.1.x.rst +++ b/akka-docs/project/migration-guide-2.0.x-2.1.x.rst @@ -246,4 +246,14 @@ v2.0:: v2.1:: - probe.reply("world") \ No newline at end of file + probe.reply("world") + +log-remote-lifecycle-events +=========================== + +Default value of akka.remote.log-remote-lifecycle-events has changed to **on**. +If you don't want these in the log you need to add this to your configuration:: + + akka.remote.log-remote-lifecycle-events = off + +