diff options
| author | Michael Foiani <sotech117@michaels-mbp-5.devices.brown.edu> | 2022-06-15 15:42:40 -0400 |
|---|---|---|
| committer | Michael Foiani <sotech117@michaels-mbp-5.devices.brown.edu> | 2022-06-15 15:42:40 -0400 |
| commit | 485e154c899f2249000cf1ddd03de975b4177679 (patch) | |
| tree | 69c04c6049e50f573dc1ee35c3b940434bb72712 /src/client/util/TrackMovements.ts | |
| parent | 98fba8bdb0fe81d6f71d0ae6018fcaaf7d8897df (diff) | |
comment out debugging console.infos
Diffstat (limited to 'src/client/util/TrackMovements.ts')
| -rw-r--r-- | src/client/util/TrackMovements.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/util/TrackMovements.ts b/src/client/util/TrackMovements.ts index 342bb440e..d512e4802 100644 --- a/src/client/util/TrackMovements.ts +++ b/src/client/util/TrackMovements.ts @@ -56,7 +56,7 @@ export class TrackMovements { } private addRecordingFFView(doc: Doc, key: string = doc[Id]): void { - console.info('adding dispose func : docId', key, 'doc', doc); + // console.info('adding dispose func : docId', key, 'doc', doc); if (this.recordingFFViews === null) { console.warn('addFFView on null RecordingApi'); return; } if (this.recordingFFViews.has(key)) { console.warn('addFFView : key already in map'); return; } @@ -69,7 +69,7 @@ export class TrackMovements { } private removeRecordingFFView = (key: string) => { - console.info('removing dispose func : docId', key); + // console.info('removing dispose func : docId', key); if (this.recordingFFViews === null) { console.warn('removeFFView on null RecordingApi'); return; } this.recordingFFViews.get(key)?.(); this.recordingFFViews.delete(key); @@ -125,7 +125,7 @@ export class TrackMovements { reaction(() => CollectionDockingView.Instance.props.Document.data, (change) => { // TODO: consider changing between dashboards - console.log('change in tabs', change); + // console.info('change in tabs', change); this.updateRecordingFFViewsFromTabs(DocListCast(change), true); }); } @@ -163,7 +163,7 @@ export class TrackMovements { // reset the current presentation clearData && this.clear(); - console.log('yieldPresentation', cpy); + // console.info('yieldPresentation', cpy); return cpy; } @@ -196,7 +196,7 @@ export class TrackMovements { if (this.recordingFFViews === null) { console.warn('removeAllFFViews on null RecordingApi'); return; } for (const [id, disposeFunc] of this.recordingFFViews) { - console.log('calling dispose func : docId', id); + // console.info('calling dispose func : docId', id); disposeFunc(); this.recordingFFViews.delete(id); } |
