Skip to content

Commit 4470bdc

Browse files
committed
Cleanup
1 parent 4590bf5 commit 4470bdc

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

injected/integration-test/page-objects/duckplayer-overlays.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,6 @@ export class DuckplayerOverlays {
507507
* @param {string} message
508508
*/
509509
async didSendException(kind, message, context = 'contentScopeScripts') {
510-
console.log('messages', await this.collector.outgoingMessages());
511-
512510
const messages = await this.collector.waitForMessage('reportMetric');
513511
expect(messages).toMatchObject([
514512
{

injected/src/features/duckplayer/overlays.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export async function initOverlays(settings, environment, messages) {
2727
try {
2828
initialSetup = await messages.initialSetup();
2929
} catch (e) {
30-
console.log('INITIAL SETUP ERROR');
3130
console.warn(e);
3231
reportException(messages.messaging, { message: e?.toString(), kind: METRIC_NAME_INITIAL_SETUP_ERROR });
3332
return;
@@ -40,8 +39,6 @@ export async function initOverlays(settings, environment, messages) {
4039
return;
4140
}
4241

43-
console.log('initialSetup Yo', JSON.stringify(initialSetup, null, 2));
44-
4542
let { userValues, ui } = initialSetup;
4643

4744
/**

special-pages/pages/duckplayer/app/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import { reportException, METRIC_NAME_INITIAL_SETUP_ERROR, METRIC_NAME_INIT_ERRO
2828
export async function init(messaging, telemetry, baseEnvironment) {
2929
const result = await callWithRetry(() => messaging.initialSetup());
3030
if ('error' in result) {
31-
console.error('INITIAL SETUP ERROR', result.error);
3231
const error = new Error(result.error);
3332
error.name = METRIC_NAME_INITIAL_SETUP_ERROR;
3433
throw error;

0 commit comments

Comments
 (0)