Support for log events added

This commit is contained in:
Piotr Pekala
2019-08-26 08:16:36 -07:00
parent 40ef11edbe
commit 69934fb870
4 changed files with 46 additions and 5 deletions

View File

@ -276,7 +276,6 @@ export class ProjectMapComponent implements OnInit, OnDestroy {
this.ws = new WebSocket(this.projectService.notificationsPath(this.server, project.project_id));
this.ws.onmessage = (event: MessageEvent) => {
// console.log(event);
this.projectWebServiceHandler.handleMessage(JSON.parse(event.data));
};