From 0fc91dbd9e9a7d942d2a2efba3ce97c2f5ef450f Mon Sep 17 00:00:00 2001 From: Ivan Ljubisavljevic Date: Fri, 20 May 2022 04:16:37 +0200 Subject: Console logs removed --- frontend/src/app/_elements/notifications/notifications.component.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'frontend/src/app/_elements/notifications') diff --git a/frontend/src/app/_elements/notifications/notifications.component.ts b/frontend/src/app/_elements/notifications/notifications.component.ts index 5716c1e6..81769fde 100644 --- a/frontend/src/app/_elements/notifications/notifications.component.ts +++ b/frontend/src/app/_elements/notifications/notifications.component.ts @@ -24,8 +24,6 @@ export class NotificationsComponent implements OnInit { this.signalRService.hubConnection.on("NotifyEpoch", (mName: string, mId: string, stat: string, totalEpochs: number, currentEpoch: number) => { const existingNotification = this.notifications.find(x => x.id === mId) const progress = ((currentEpoch + 1) / totalEpochs); - //console.log("Ukupno epoha", totalEpochs, "Trenutna epoha:", currentEpoch); - //console.log("stat:", stat); if (!existingNotification) this.notifications.push(new Notification(`Treniranje modela: ${mName}`, mId, progress, true)); else { -- cgit v1.2.3