Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for ideas on how to make RX more easily debuggable. It can be so very difficult to find the point of failure when a source is passed through combiners and throttles and publishes and such.

So far I've been doing similar things to what I do with complicated Enumerable chains - inserting Do() for tracing, adding a "name" field to an anonymous type part way through, grabbing stack traces sometimes.. But we have perhaps hundreds of producers and maybe thousands of consumers in our system and it's getting very hard to isolate problems.

What kinds of tricks do you have for debugging your RX usage?

share|improve this question
Great question. I'm always struggling to debug my Rx code. – Jim Nov 22 '11 at 10:01
1  
I strongly disagree with this question being casually closed by casperOne. I am looking for expertise in a very specific technology. This question will not likely result in "opinion, debate, arguments, polling, or extended discussion". – Scott Bilas Nov 29 '11 at 17:48
Not constructive? Maybe the question is not quite specific enough, but it's a highly valuable question. Oh well, back to the "why doesn't this code compile" questions. – Niall Connaughton Feb 3 '12 at 10:09

closed as not constructive by casperOne Nov 28 '11 at 1:36

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

One important trick for catching Rx bugs is to retry debugging with first-chance exceptions enabled, this makes it way more likely that you'll get a real exception message instead of a rethrown one:

share|improve this answer
I'm always surprised when people don't run with exceptions set to catch first-chance. It's like flying blind. – Scott Bilas Nov 22 '11 at 19:20

Not the answer you're looking for? Browse other questions tagged or ask your own question.