We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d2df0 commit 9ea91c7Copy full SHA for 9ea91c7
src/vs/platform/audioCues/browser/audioCueService.ts
@@ -75,11 +75,9 @@ export class AudioCueService extends Disposable implements IAudioCueService {
75
private readonly playingSounds = new Set<Sound>();
76
77
public async playSound(sound: Sound, allowManyInParallel = false): Promise<void> {
78
- console.log(sound.fileName, allowManyInParallel);
79
if (!allowManyInParallel && this.playingSounds.has(sound)) {
80
return;
81
}
82
- console.log('playing', sound.fileName);
83
this.playingSounds.add(sound);
84
const url = FileAccess.asBrowserUri(`vs/platform/audioCues/browser/media/${sound.fileName}`).toString(true);
85
0 commit comments