Skip to content

Release 8.11.0

Latest

Choose a tag to compare

@RodrigoSMarques RodrigoSMarques released this 06 Jan 23:55
9b65aa6

New Platform Logging Stream

  • Added FlutterBranchSdk.platformLogs stream to receive Branch SDK log messages in real-time
  • Enable logging via branch-config.json (enableLogging and logLevel keys) or programmatically through FlutterBranchSdk.init()
  • Supports log levels: VERBOSE, DEBUG, INFO, WARNING, ERROR, and NONE
  • Example usage:
    FlutterBranchSdk.platformLogs.listen((logMessage) {
      debugPrint('Branch Log: $logMessage');
    });