diff --git a/src/app/components/logs-dashboard/logs-home/logs-home.component.ts b/src/app/components/logs-dashboard/logs-home/logs-home.component.ts index 03e064b2d64ac4ccd9a0ee20737c910def5e1a8f..57c37011c71373eb0cd98a7c2a82dc3b38237758 100644 --- a/src/app/components/logs-dashboard/logs-home/logs-home.component.ts +++ b/src/app/components/logs-dashboard/logs-home/logs-home.component.ts @@ -55,7 +55,7 @@ export class LogsHomeComponent implements OnInit { this.uuid, this.sessionId, ).subscribe((results) => { - console.log('results', results); + // console.log('results', results); this.allStepsData = results; }, ); diff --git a/src/app/components/logs-dashboard/logs-sessions/logs-sessions.component.ts b/src/app/components/logs-dashboard/logs-sessions/logs-sessions.component.ts index 3ce7662867a75e36177580f591a01eeea1b88432..33af5a08a130b88ba9090cce058024bd84a8fcdf 100644 --- a/src/app/components/logs-dashboard/logs-sessions/logs-sessions.component.ts +++ b/src/app/components/logs-dashboard/logs-sessions/logs-sessions.component.ts @@ -26,7 +26,7 @@ export class LogsSessionsComponent implements OnInit { getProcessTimeAggr (sessionId) { this.dataLogsService.getProcessTimeAggr(sessionId).subscribe((result) => { - console.log(result[0]); + // console.log(result[0]); this.allSessionsIdInfo.push(result[0]); }, ); @@ -37,7 +37,7 @@ export class LogsSessionsComponent implements OnInit { for (let i = 0; i < this.childNbSessions; i += 1) { this.getProcessTimeAggr(this.childSessionsList[i]); } - console.log('allSessionsIdInfo: ', this.allSessionsIdInfo); + // console.log('allSessionsIdInfo: ', this.allSessionsIdInfo); }, ); } diff --git a/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts b/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts index a149b61f02acfeb8b7e55bf7511f81c04aa38821..a3c300e211992f77134366dee52341eb3abe1b00 100644 --- a/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts +++ b/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts @@ -44,7 +44,7 @@ export class LogsSlugsComponent implements OnInit { for (let i = 0; i < this.childNbSlugs; i += 1) { this.getProcessTimeAggr(this.childSlugsList[i]); } - console.log('allSessionsIdInfo: ', this.allSessionsIdInfo); + // console.log('allSessionsIdInfo: ', this.allSessionsIdInfo); }, ); } diff --git a/src/app/components/logs-dashboard/report/logs-data/logs-data.component.ts b/src/app/components/logs-dashboard/report/logs-data/logs-data.component.ts index 2effd05c2177e03ba77dfacb4844103336c0aafa..1f45b96e5f3411086d4b7340ce979157f97a743e 100644 --- a/src/app/components/logs-dashboard/report/logs-data/logs-data.component.ts +++ b/src/app/components/logs-dashboard/report/logs-data/logs-data.component.ts @@ -40,13 +40,13 @@ export class LogsDataComponent implements OnChanges { getLogsSteps() { if ((this.childUuid != null) && (this.childSessionId != null)) { - console.log('parameters', this.childUuid, this.childSessionId); + // console.log('parameters', this.childUuid, this.childSessionId); this.dataLogsService.getAllStepsDuration( this.childUuid, this.childSessionId, ).subscribe((results) => { - console.log('results', results); + // console.log('results', results); this.allStepsData = results; }, ); diff --git a/src/app/components/logs-dashboard/report/logs-pre-report/logs-pre-report.component.ts b/src/app/components/logs-dashboard/report/logs-pre-report/logs-pre-report.component.ts index e69f7c335ce97208c17ad8dc47b7d315ab2683d7..61fc46b106cc869f051a3534d38316bfd2d5c433 100644 --- a/src/app/components/logs-dashboard/report/logs-pre-report/logs-pre-report.component.ts +++ b/src/app/components/logs-dashboard/report/logs-pre-report/logs-pre-report.component.ts @@ -51,8 +51,8 @@ export class LogsPreReportComponent implements OnInit { } else { this.nbObjects = response[0].session_id_list.length; } - console.log('responseArray: ', this.responseArray); - console.log('nbObjects: ', this.nbObjects); + // console.log('responseArray: ', this.responseArray); + // console.log('nbObjects: ', this.nbObjects); }); } diff --git a/src/app/components/logs-dashboard/report/logs-report/logs-report.component.ts b/src/app/components/logs-dashboard/report/logs-report/logs-report.component.ts index 7579d9892a7e9bfb81130c997aca31db228fecd6..a0573e2b0989577f96192831b4775d2efb39a4ac 100644 --- a/src/app/components/logs-dashboard/report/logs-report/logs-report.component.ts +++ b/src/app/components/logs-dashboard/report/logs-report/logs-report.component.ts @@ -50,7 +50,7 @@ export class LogsReportComponent implements OnInit { getUuidFromSlug(slug) { this._dataLogsService.getUuidFromSlug(slug).subscribe((result) => { - console.log(result[0]); + // console.log(result[0]); this.uuid = result[0].uuid_list[0]; }, );