setLogCompressEnabled method
Enable or disable local log compression
If compression is enabled, the log size will significantly reduce, but logs can be read only after being decompressed by the Python script provided by Tencent Cloud. If compression is disabled, logs will be stored in plaintext and can be read directly in Notepad, but will take up more storage capacity.
Parameters:
enabled
Specify whether to enable it, which is enabled by default
Platform not supported:
- web
Implementation
Future<void> setLogCompressEnabled(bool enabled // Whether to enable
) {
return _cloudChannel!.invokeMethod('setLogCompressEnabled', {
"enabled": enabled,
});
}