Skip to content

Commit 9ea91c7

Browse files
committed
rm logs
1 parent e0d2df0 commit 9ea91c7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/vs/platform/audioCues/browser/audioCueService.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,9 @@ export class AudioCueService extends Disposable implements IAudioCueService {
7575
private readonly playingSounds = new Set<Sound>();
7676

7777
public async playSound(sound: Sound, allowManyInParallel = false): Promise<void> {
78-
console.log(sound.fileName, allowManyInParallel);
7978
if (!allowManyInParallel && this.playingSounds.has(sound)) {
8079
return;
8180
}
82-
console.log('playing', sound.fileName);
8381
this.playingSounds.add(sound);
8482
const url = FileAccess.asBrowserUri(`vs/platform/audioCues/browser/media/${sound.fileName}`).toString(true);
8583

0 commit comments

Comments
 (0)