withDebugEnabled method

BlueConicConfigurationBuilder withDebugEnabled(
  1. bool debug
)

Sets whether debug mode is enabled.

Debug mode enables additional logging for troubleshooting. Default is false.

Implementation

BlueConicConfigurationBuilder withDebugEnabled(bool debug) {
  _debug = debug;
  return this;
}