@3dsource/angular-unreal-module 0.0.38-dev.1 → 0.0.38-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3112,7 +3112,7 @@ class UnrealEffects {
3112
3112
  return this.actions$.pipe(ofType(resetAfkAction), tap(() => resetAfk()));
3113
3113
  }, { dispatch: false });
3114
3114
  this.setDataChannelTimeoutCheck$ = createEffect(() => {
3115
- return this.actions$.pipe(ofType(setAwsInstance), filter(({ wsUrl }) => !!wsUrl), debounceTime$1(this.dataChannelConnectionTimeout), // Timeout, if not connected, sends an error report, then reconnects
3115
+ return this.actions$.pipe(ofType(setAwsInstance), filter(({ wsUrl }) => !!wsUrl), tap(() => Logger.info(`DataChannel timeout check started with next timeout: ${this.dataChannelConnectionTimeout}`)), debounceTime$1(this.dataChannelConnectionTimeout), // Timeout, if not connected, sends an error report, then reconnects
3116
3116
  concatLatestFrom(() => [
3117
3117
  this.store.select(unrealFeature.selectSsData),
3118
3118
  this.store.select(unrealFeature.selectCirrusConnected),