Hi all, I'm trying to disable the messages of this type:
"[WARN|ReliableDeliverySupervisor] Association with remote system [akka.tcp://[email protected]:57230] has failed, address is now gated for [5000] ms. Reason is: [Disassociated]." but the only way to do it was to change the global loglevel to "ERROR" I already tried to keep the global loglevel to "INFO" and use the next options: akka.remote.log-remote-lifecycle-events = off akka.cluster.log-info = off akka.remote.log-received-messages = off akka.loglevel = "ERROR" akka.stdout-loglevel = "ERROR" akka.log-dead-letters-during-shutdown = off but none of them worked. Is there any way to disable that specific warning message while keeping the global loglevel to INFO? I also have a question about "isolating" some types of actors from others according to their roles in the same cluster. For instance, several actors join to the same cluster. These actors can behave as only one of the next roles: Client, Server, Executor. I basically want to isolate events created by Clients from Executors and the other way around, while Servers are the coordinators among them and taking into account that Clients, Servers and Executors should belong to the same cluster if possible. The idea that I had was to create two clusters: Clients-Servers and Servers-Executors; but clusters are heavy-weight processes and communicate server actors from different clusters could complicate the system. Any suggestion to implement the behavior described above apart from creating two clusters? I'm using Akka version 2.3.4. Thanks in advance. -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
