TCA.restoreLogLevel

Restores the log level to the initial setting.

TCA.restoreLogLevel();

Arguments

None

Return value

A promise that will be fulfilled with no arguments.

Example

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