logConfig property

  1. @JsonKey(includeIfNull: false)
LogConfig? logConfig
getter/setter pair

The configuration of the log files. See LogConfig . By default, the SDK outputs five log files: agorasdk.log, agorasdk_1.log, agorasdk_2.log, agorasdk_3.log, and agorasdk_4.log. Each log file has a default size of 512 KB and is encoded in UTF-8 format. The SDK writes the latest log in agorasdk.log. When agorasdk.log is full, the SDK deletes the log file with the earliest modification time among the other four, renames agorasdk.log to the name of the deleted log file, and create a new agorasdk.log to record the latest log.

Implementation

@JsonKey(includeIfNull: false)
LogConfig? logConfig;