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?
I'm just trying to debug a function of mine that takes two streams and combines them with
combineLatest
, inside of thatcombineLatest
I have aconsole.log
just logging the message from one of the streams. Only nothing happens. It can make it all the way through thecombineLatest
doing what I want but it will not do anything with myconsole.log
. Is this purposeful, because I also have had a bunch of problems trying to log a message inside asubscribe
?