Skip to content

Commit 3111bc6

Browse files
committed
Remove console log
1 parent ccc90df commit 3111bc6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/core/PlayerBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ export default class PlayerBase {
904904
this.playedFrames = 0;
905905
this.isWaitingForStop = false;
906906

907-
console.log('[PlayerBase] onPlayStart');
907+
// console.log('[PlayerBase] onPlayStart');
908908
this.onPlayStart();
909909
this.raiseEventSimple('start');
910910
}

src/main/core/playing/PlayerProxy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export default class PlayerProxy {
191191
message: Message.AllTypes,
192192
transferable?: Transferable[]
193193
) {
194-
console.log(`[PlayerProxy] postMessage: type = ${message.type}`);
194+
// console.log(`[PlayerProxy] postMessage: type = ${message.type}`);
195195
const p = this.port;
196196
transferable
197197
? p.postMessage(message, transferable)
@@ -527,7 +527,7 @@ export default class PlayerProxy {
527527
if (!data) {
528528
return;
529529
}
530-
console.log(`[PlayerProxy] onMessage: type = ${data.type}`);
530+
// console.log(`[PlayerProxy] onMessage: type = ${data.type}`);
531531
switch (data.type) {
532532
case 'stop':
533533
if (data.data === this.playingId) {

0 commit comments

Comments
 (0)