aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/ReplayMovements.ts
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@michaels-mbp-5.devices.brown.edu>2022-06-15 15:42:40 -0400
committerMichael Foiani <sotech117@michaels-mbp-5.devices.brown.edu>2022-06-15 15:42:40 -0400
commit485e154c899f2249000cf1ddd03de975b4177679 (patch)
tree69c04c6049e50f573dc1ee35c3b940434bb72712 /src/client/util/ReplayMovements.ts
parent98fba8bdb0fe81d6f71d0ae6018fcaaf7d8897df (diff)
comment out debugging console.infos
Diffstat (limited to 'src/client/util/ReplayMovements.ts')
-rw-r--r--src/client/util/ReplayMovements.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/util/ReplayMovements.ts b/src/client/util/ReplayMovements.ts
index e46810b52..8e8bfca02 100644
--- a/src/client/util/ReplayMovements.ts
+++ b/src/client/util/ReplayMovements.ts
@@ -32,7 +32,7 @@ export class ReplayMovements {
// play movemvents will recreate them when the user resumes the presentation
pauseMovements = (): undefined | Error => {
if (!this.isPlaying) {
- console.warn('[recordingApi.ts] pauseMovements(): already on paused');
+ // console.warn('[recordingApi.ts] pauseMovements(): already on paused');
return;
}
@@ -42,7 +42,7 @@ export class ReplayMovements {
}
setVideoBox = async (videoBox: VideoBox) => {
- console.log('setVideoBox', videoBox);
+ // console.info('setVideoBox', videoBox);
if (videoBox !== null) { console.warn('setVideoBox on already videoBox'); }
if (this.videoBoxDisposeFunc !== null) { console.warn('setVideoBox on already videoBox dispose func'); this.videoBoxDisposeFunc(); }
@@ -104,7 +104,7 @@ export class ReplayMovements {
}
docIdtoDoc.set(docId, refFields[docId] as Doc);
}
- console.log('loadPresentation refFields', refFields, docIdtoDoc);
+ // console.info('loadPresentation refFields', refFields, docIdtoDoc);
return docIdtoDoc;
}
@@ -151,7 +151,7 @@ export class ReplayMovements {
}
public playMovements = (presentation: Presentation, docIdtoDoc: Map<string, Doc>, timeViewed: number = 0) => {
- console.log('playMovements', presentation, timeViewed, docIdtoDoc);
+ // console.info('playMovements', presentation, timeViewed, docIdtoDoc);
if (presentation.movements === null || presentation.movements.length === 0) { //|| this.playFFView === null) {
return new Error('[recordingApi.ts] followMovements() failed: no presentation data')