File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -429,15 +429,15 @@ export class SidebarUserDetailsComponent implements OnInit {
429429 getProjects ( ) {
430430 this . logger . log ( '[SIDEBAR-USER-DETAILS] calling getProjects ... ' ) ;
431431 this . projectService . getProjects ( ) . subscribe ( ( projects : ProjectUser [ ] ) => {
432- console . log ( '[SIDEBAR-USER-DETAILS] getProjects PROJECTS ' , projects ) ;
432+ this . logger . log ( '[SIDEBAR-USER-DETAILS] getProjects PROJECTS ' , projects ) ;
433433 if ( projects ) {
434434 this . projects = projects . filter ( ( prj : ProjectUser ) => prj ?. id_project ?. status === 100 ) ;
435435 this . projects . forEach ( ( prj : ProjectUser ) => {
436436 prj . teammateStatus = getUserStatusFromProjectUser ( prj as any ) ;
437437 } ) ;
438- console . log ( '[SIDEBAR-USER-DETAILS] getProjects this.project ' , this . project ) ;
438+ this . logger . log ( '[SIDEBAR-USER-DETAILS] getProjects this.project ' , this . project ) ;
439439 this . syncCurrentProjectTeammateStatusFromProjectsList ( ) ;
440- console . log ( '[SIDEBAR-USER-DETAILS] getProjects this.project after ' , this . project ) ;
440+ this . logger . log ( '[SIDEBAR-USER-DETAILS] getProjects this.project after ' , this . project ) ;
441441 }
442442 } , ( error ) => {
443443 this . logger . error ( '[SIDEBAR-USER-DETAILS] getProjects - ERROR ' , error ) ;
You can’t perform that action at this time.
0 commit comments