=act,clu,rem #15828 Turkish I bug

Conflicts:
	akka-cluster/src/main/scala/akka/cluster/ClusterSettings.scala
This commit is contained in:
Roland Kuhn 2014-09-09 08:25:25 +02:00 committed by Konrad 'ktoso' Malawski
parent 07df1efa5e
commit 1eda0d9b23
5 changed files with 12 additions and 7 deletions

View file

@ -15,6 +15,7 @@ import akka.actor.Props
import akka.event.Logging
import akka.event.Logging.LogLevel
import akka.ConfigurationException
import java.util.Locale
final class RemoteSettings(val config: Config) {
import config._
@ -29,7 +30,7 @@ final class RemoteSettings(val config: Config) {
val TrustedSelectionPaths: Set[String] =
immutableSeq(getStringList("akka.remote.trusted-selection-paths")).toSet
val RemoteLifecycleEventsLogLevel: LogLevel = getString("akka.remote.log-remote-lifecycle-events").toLowerCase() match {
val RemoteLifecycleEventsLogLevel: LogLevel = getString("akka.remote.log-remote-lifecycle-events").toLowerCase(Locale.ROOT) match {
case "on" Logging.DebugLevel
case other Logging.levelFor(other) match {
case Some(level) level