@rongcloud/engine 5.12.1-enterprise-alpha.1 → 5.12.1-enterprise-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -9323,6 +9323,10 @@ declare abstract class BasicReporter {
9323
9323
  * logger 实例
9324
9324
  */
9325
9325
  protected readonly logger: BasicLogger;
9326
+ /**
9327
+ * 是否关闭日志上报,默认不关闭
9328
+ */
9329
+ private disableLogReport;
9326
9330
  /**
9327
9331
  * 当前用户 id
9328
9332
  */
@@ -9339,7 +9343,11 @@ declare abstract class BasicReporter {
9339
9343
  /**
9340
9344
  * logger 实例
9341
9345
  */
9342
- logger: BasicLogger);
9346
+ logger: BasicLogger,
9347
+ /**
9348
+ * 是否关闭日志上报,默认不关闭
9349
+ */
9350
+ disableLogReport?: boolean);
9343
9351
  private timer;
9344
9352
  protected started: boolean;
9345
9353
  /**