getDebugInfo static method

String getDebugInfo()

Get debug info for troubleshooting update issues.

Returns a formatted string with version info, URLs, and configuration. Useful for debugging when updates aren't detected correctly.

Implementation

static String getDebugInfo() {
  if (_instance == null) {
    return 'AutoUpdater not initialized';
  }
  return _instance!.core.getDebugInfo();
}