diff --git a/projects/player/src/app/app.component.ts b/projects/player/src/app/app.component.ts index 6215c291c33e9f6ca9d4c25768c086ef44b16b1d..b2ef82c2b284bdb3030b6541eb5883f875a94617 100644 --- a/projects/player/src/app/app.component.ts +++ b/projects/player/src/app/app.component.ts @@ -68,6 +68,8 @@ export class AppComponent implements OnInit { this.pages = unitDefinition.pages; this.unitStateService.unitStateElementCodes = message.unitState?.dataParts?.elementCodes ? JSON.parse(message.unitState.dataParts.elementCodes) : []; + // eslint-disable-next-line no-console + console.log('player: unitStateElementCodes', this.unitStateService.unitStateElementCodes); } else { this.dialog.open(AlertDialogComponent, { data: { diff --git a/projects/player/src/app/services/verona-post.service.ts b/projects/player/src/app/services/verona-post.service.ts index 651783d635a82f5bf37aa64089a4dff8b1a6c185..d4706ae6c5e168d4f8f2efeadb9e3c9c84e047f1 100644 --- a/projects/player/src/app/services/verona-post.service.ts +++ b/projects/player/src/app/services/verona-post.service.ts @@ -71,6 +71,8 @@ export class VeronaPostService { sendVopReadyNotification(playerMetadata: VopMetaData): void { if (playerMetadata) { + // eslint-disable-next-line no-console + console.log('player: sendVopReadyNotification', playerMetadata); this.send({ type: 'vopReadyNotification', ...playerMetadata diff --git a/projects/player/src/main.ts b/projects/player/src/main.ts index 286e1b6407727f33505959c6b045829d0944bf99..b6773a6f268e67f66e8682cdf0581b15ff694b6f 100644 --- a/projects/player/src/main.ts +++ b/projects/player/src/main.ts @@ -6,9 +6,9 @@ import { environment } from './environments/environment'; if (environment.production) { enableProdMode(); - if (window) { - window.console.log = () => {}; - } + // if (window) { + // window.console.log = () => {}; + // } } platformBrowserDynamic().bootstrapModule(AppModule)