TCA.startLogRequests

Starts logging of 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.startLogRequests();

Arguments

None

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
TCA.startLogRequests().then(function()
    {  TCA.done();
}).catch(function (error) {  
    TCA.doneWithError(error);
});