[akka-user] Re: sent/received messages excluding the deathwatch heartbeats?

2015-01-19 Thread Sam Halliday
Is this something that would be suitable for an RFE? More generally it would be good to have an option to only log userland messages in remoting. On Friday, 16 January 2015 17:41:55 UTC, Sam Halliday wrote: > > Hi all, > > I'm trying to debug a remoting issue and I need to look at the logs of th

Re: [akka-user] Re: sent/received messages excluding the deathwatch heartbeats?

2015-01-21 Thread Martynas Mickevičius
Hi Sam, you can use custom event listener to display the log messages that you are interested in. Here you can find a simple example demonstrating that. And there is a docume

Re: [akka-user] Re: sent/received messages excluding the deathwatch heartbeats?

2015-01-21 Thread Patrik Nordwall
You could also use slf4j logger and define the filter in the logback config (or whatever impl you prefer). An alternative; use grep/egrep to filter out the relevant information from the log file after the fact. /Patrik > 21 jan 2015 kl. 17:29 skrev Martynas Mickevičius > : > > Hi Sam, > > y

Re: [akka-user] Re: sent/received messages excluding the deathwatch heartbeats?

2015-01-22 Thread Sam Halliday
Thanks Martynas, It's a shame that this would be needed. It feels very much like the heartbeats should be considered part of the system layer when it comes to logging, and therefore already filtered. Seeing heartbeats when debugging makes it incredibly difficult to see anything. My concern wit

Re: [akka-user] Re: sent/received messages excluding the deathwatch heartbeats?

2015-01-22 Thread Sam Halliday
Thanks Patrik, That's always an option with logback, but I'd rather not have to go there. Grep in this case is not an option as the logs are coming through in a Jenkins console and very noisy. I'd like to be able to just read it off. The custom event handler sounds like it might be a good option