setHttpEnableTimelineLogging method
- @Deprecated('Use httpEnableTimelineLogging instead.')
Enables or disables HTTP logging for a given isolate.
Warning: The returned Future will not complete if the target isolate is paused and will only complete when the isolate is resumed.
Implementation
@Deprecated('Use httpEnableTimelineLogging instead.')
Future<Success> setHttpEnableTimelineLogging(
String isolateId, bool enabled) =>
_callHelper('ext.dart.io.setHttpEnableTimelineLogging', isolateId, args: {
'enabled': enabled,
});