@@ -222,6 +222,7 @@ export class Controller {
222
222
apiKey ,
223
223
error || "Unknown"
224
224
) ;
225
+ errorLogger ( "createContact" , "Entity" , apiKey , req . body ) ;
225
226
next ( error ) ;
226
227
}
227
228
}
@@ -301,6 +302,7 @@ export class Controller {
301
302
apiKey ,
302
303
error || "Unknown"
303
304
) ;
305
+ errorLogger ( "updateContact" , "Entity" , apiKey , req . body ) ;
304
306
next ( error ) ;
305
307
}
306
308
}
@@ -486,6 +488,7 @@ export class Controller {
486
488
apiKey ,
487
489
error || "Unknown"
488
490
) ;
491
+ errorLogger ( "createCalendarEvent" , "Entity" , apiKey , req . body ) ;
489
492
next ( error ) ;
490
493
}
491
494
}
@@ -540,6 +543,7 @@ export class Controller {
540
543
apiKey ,
541
544
error || "Unknown"
542
545
) ;
546
+ errorLogger ( "updateCalendarEvent" , "Entity" , apiKey , req . body ) ;
543
547
next ( error ) ;
544
548
}
545
549
}
@@ -638,6 +642,12 @@ export class Controller {
638
642
providerConfig ?. apiKey ,
639
643
error || "Unknown"
640
644
) ;
645
+ errorLogger (
646
+ "handleCallEvent" ,
647
+ "Entity" ,
648
+ providerConfig ?. apiKey ,
649
+ req . body
650
+ ) ;
641
651
next ( error ) ;
642
652
}
643
653
}
@@ -696,6 +706,12 @@ export class Controller {
696
706
providerConfig ?. apiKey ,
697
707
error || "Unknown"
698
708
) ;
709
+ errorLogger (
710
+ "createCallLogForEntities" ,
711
+ "Entity" ,
712
+ providerConfig ?. apiKey ,
713
+ req . body
714
+ ) ;
699
715
next ( error ) ;
700
716
}
701
717
}
@@ -775,6 +791,7 @@ export class Controller {
775
791
apiKey ,
776
792
error || "Unknown"
777
793
) ;
794
+ errorLogger ( "handleConnectedEvent" , "Entity" , apiKey , req . body ) ;
778
795
next ( error ) ;
779
796
}
780
797
}
@@ -807,6 +824,7 @@ export class Controller {
807
824
apiKey ,
808
825
error || "Unknown"
809
826
) ;
827
+ errorLogger ( "updateCallEvent" , "Entity" , apiKey , req . body ) ;
810
828
next ( error ) ;
811
829
}
812
830
}
0 commit comments