You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once the RxJS application starts, it might begin to emit values through an observable with enabled log points BEFORE the extension could sync the enabled log points to the runtime.
This results in missed logs.
How to Reproduce
const{of, map}=require('rxjs');of(1,2,3,4,5,6).pipe(map(x=>x*x)// Enable Log Point here).subscribe(console.log)
Exchanging of with, e.g. interval does not have this problem. Assumption: Different scheduling?
Expected Behavior
No logs are missed, no matter how early an observable starts to emit.
The text was updated successfully, but these errors were encountered:
Version Overview
Description
Once the RxJS application starts, it might begin to emit values through an observable with enabled log points BEFORE the extension could sync the enabled log points to the runtime.
This results in missed logs.
How to Reproduce
Exchanging
of
with, e.g.interval
does not have this problem. Assumption: Different scheduling?Expected Behavior
No logs are missed, no matter how early an observable starts to emit.
The text was updated successfully, but these errors were encountered: