enableLog static method

void enableLog(
  1. bool enableLog
)

enable debug logging

enableLog log switch

Implementation

static void enableLog(bool enableLog) {
  if (enableLog) {
    ThinkingAnalyticsAPI.enableLog();
  }
}