Akka.Remote.TestKit.MultiNodeConfig.DebugConfig C# (CSharp) Метод

DebugConfig() публичный Метод

Include for verbose debug logging
public DebugConfig ( bool on ) : Config
on bool when `true` debug Config is returned, otherwise config with info logging
Результат Akka.Configuration.Config
        public Config DebugConfig(bool on)
        {
            if (on)
                return ConfigurationFactory.ParseString(@"
                    akka.loglevel = DEBUG
                    akka.remote {
                        log-received-messages = on
                        log-sent-messages = on
                    }
                    akka.actor.debug {
                        receive = on
                        fsm = on
                    }
                    akka.remote.log-remote-lifecycle-events = on
                    akka.log-dead-letters = on
                ");
            return ConfigurationFactory.Empty;
        }