setLoggingEnabled method

CountlyConfig setLoggingEnabled(
  1. bool enabled
)

Set to true of you want to enable countly internal debugging logs those logs will be printed to the console

Implementation

CountlyConfig setLoggingEnabled(bool enabled) {
  _loggingEnabled = enabled;
  return this;
}