From 505b145bb3995a64f13d592364d90b7f4b620768 Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Tue, 11 Feb 2020 16:28:14 -0500 Subject: [PATCH] commented out debug console messages --- src/app/app.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index a025c2f0..5dfb70c7 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -98,8 +98,8 @@ export class AppComponent implements OnInit { } public removeFromMp4(name: string) { - console.log(name); - console.log(this.mp4s); + // console.log(name); + // console.log(this.mp4s); for (let i = 0; i < this.mp4s.length; i++) { if (this.mp4s[i].id === name) { this.mp4s.splice(i, 1); @@ -120,7 +120,7 @@ export class AppComponent implements OnInit { this.exists = exists[0]; if (exists[0] === 'failed') { const percent = exists[2]; - console.log(percent); + // console.log(percent); if (percent > 0.30) { this.determinateProgress = true; this.percentDownloaded = percent * 100;