By default, log capture is enabled. Log capture saves logs to the client and can be enabled or disabled programmatically. Logs are sent to the server with an explicit send call, or with auto log
To enable:
[OCLogger setCapture:YES];
To disable:
[OCLogger setCapture:NO];
To enable:
Logger.setCapture(true);
To disable:
Logger.setCapture(false);
To enable:
WL.Logger.config({ capture: true });
To disable:
WL.Logger.config({ capture: false });
To enable:
ibmmfpfanalytics.logger.enable(true);
To disable:
ibmmfpfanalytics.logger.enable(false);