We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2810e54 commit de799c8Copy full SHA for de799c8
src/models/controller.model.ts
@@ -870,6 +870,7 @@ export class Controller {
870
next(error);
871
}
872
873
+
874
public async createCallLogForPhoneNumber(
875
req: BridgeRequest<CallEvent>,
876
res: Response,
@@ -1016,7 +1017,11 @@ export class Controller {
1016
1017
req.params.type
1018
);
1019
- infoLogger("getEntity", `[${fetchedEntity}] `, providerConfig.apiKey);
1020
+ infoLogger(
1021
+ "getEntity",
1022
+ `[${JSON.stringify(fetchedEntity)}] `,
1023
+ providerConfig.apiKey
1024
+ );
1025
infoLogger("getEntity", `END`, providerConfig?.apiKey);
1026
res.status(200).send(fetchedEntity);
1027
} catch (error) {
0 commit comments