TCA.stopLogRequests
Stops logging URL requests.
Note: This function is only relevant for steps that have a Step completed or Step synchronous network completed end event, or that do not have any end event.
TCA.stopLogRequests();
Arguments
None
Return value
A promise that will be fulfilled with no arguments.
Example
TCA.stopLogRequests().then(function(){
TCA.done();
}).catch(function (error) {
TCA.doneWithError(error);
});