addLogFilter method

Future addLogFilter(
  1. String directives
)

Adds the supplied directives to the current log filter

unsafe: This method is only active with appropriate flags

Implementation

Future<dynamic> addLogFilter(String directives) async {
  final response = await _provider.send('system_addLogFilter', [directives]);
  return response.result;
}