!rem #3920 Remove LogRemoteLifecycleEvents

This commit is contained in:
Patrik Nordwall 2014-03-12 15:05:18 +01:00
parent e1eec61ca5
commit 514e0cc297
4 changed files with 0 additions and 13 deletions

View file

@ -37,9 +37,6 @@ final class RemoteSettings(val config: Config) {
}
}
@deprecated("Use the RemoteLifecycleEventsLogLevel field instead.", "2.3")
def LogRemoteLifecycleEvents: Boolean = RemoteLifecycleEventsLogLevel >= Logging.ErrorLevel
val Dispatcher: String = getString("akka.remote.use-dispatcher")
def configureDispatcher(props: Props): Props = if (Dispatcher.isEmpty) props else props.withDispatcher(Dispatcher)

View file

@ -95,9 +95,4 @@ private[akka] abstract class RemoteTransport(val system: ExtendedActorSystem, va
*/
protected def useUntrustedMode: Boolean
/**
* When this method returns true, RemoteLifeCycleEvents will be logged as well as be put onto the eventStream.
*/
protected def logRemoteLifeCycleEvents: Boolean
}

View file

@ -221,10 +221,6 @@ private[remote] class Remoting(_system: ExtendedActorSystem, _provider: RemoteAc
// Not used anywhere only to keep compatibility with RemoteTransport interface
protected def useUntrustedMode: Boolean = provider.remoteSettings.UntrustedMode
// Not used anywhere only to keep compatibility with RemoteTransport interface
@deprecated("Use the LogRemoteLifecycleEvents setting instead.", "2.3")
protected def logRemoteLifeCycleEvents: Boolean = LogRemoteLifecycleEvents
}
/**