Can anyone please help with the below issue?
`login_api_test(userData) {
const url = AppConstant.API_URL + 'Authenticate';
const hearers = {
'Content-Type': 'application/json',
AppVersion: AppConstant.APP_SERVER_VERSION,
AppDeviceId: AppConstant.DEVICE_ID,
};
this.httpClient
.post(url, userData, {
headers: hearers,
})
.subscribe({
next: (d) => {
console.info('login data', d);
},
error: (e) => {
console.error('login data error', e);
},
});
}`
Error
`TypeError: console.time is not a function
at XMLHttpRequest.window.XMLHttpRequest.send [as __zone_symbol__send] (http://192.168.1.8:8100/:511:33)
at ZoneTask.scheduleTask [as scheduleFn] (http://192.168.1.8:8100/polyfills.js:9913:18)
at _ZoneDelegate.scheduleTask (http://192.168.1.8:8100/polyfills.js:7653:16)
at AsyncStackTaggingZoneSpec.onScheduleTask (http://192.168.1.8:8100/vendor.js:68514:21)
at _ZoneDelegate.scheduleTask (http://192.168.1.8:8100/polyfills.js:7648:43)
at Object.onScheduleTask (http://192.168.1.8:8100/polyfills.js:7565:61)
at _ZoneDelegate.scheduleTask (http://192.168.1.8:8100/polyfills.js:7648:43)
at Zone.scheduleTask (http://192.168.1.8:8100/polyfills.js:7504:35)
at Zone.scheduleMacroTask (http://192.168.1.8:8100/polyfills.js:7526:19)
at scheduleMacroTaskWithCurrentZone (http://192.168.1.8:8100/polyfills.js:7943:23) {stack: 'TypeError: console.time is not a function
…http://192.168.1.8:8100/polyfills.js:7943:23)', message: 'console.time is not a function'}`