Reactive-Extensions / RxJS

The Reactive Extensions for JavaScript
http://reactivex.io
Other
19.48k stars 2.1k forks source link

console.log does not work inside combineLatest #1360

Open RyanMitchellWilson opened 8 years ago

RyanMitchellWilson commented 8 years ago

I'm just trying to debug a function of mine that takes two streams and combines them with combineLatest, inside of that combineLatest I have a console.log just logging the message from one of the streams. Only nothing happens. It can make it all the way through the combineLatest doing what I want but it will not do anything with my console.log. Is this purposeful, because I also have had a bunch of problems trying to log a message inside a subscribe?