onReady method

  1. @mustCallSuper
void onReady()

Implementation

@mustCallSuper
void onReady() {
  if (_ready) return;
  _ready = true;

  // Changed from logDebug to logInfo - important lifecycle event
  ZenLogger.logInfo('Controller $runtimeType ready');

  if (ZenConfig.enablePerformanceMetrics) {
    ZenMetrics.incrementCounter('controller.ready');
  }
}