setupAdkLogger function

void setupAdkLogger({
  1. Level level = Level.info,
})

Sets the process-wide ADK logger configuration.

Implementation

void setupAdkLogger({Level level = Level.info}) {
  // Dart's standard logging does not have a process-wide formatter equivalent
  // to Python logging.basicConfig. This function is kept as a parity surface.
  _activeLoggerConfig = AdkLoggerConfig(level: level);
}