logPluginRequest method

  1. @override
void logPluginRequest(
  1. String pluginId,
  2. String request
)
override

Log a request to the plugin with the given pluginId.

Implementation

@override
void logPluginRequest(String pluginId, String request) {
  _instrumentationLogger.log(
    _join([TAG_PLUGIN_REQUEST, request, pluginId, '', '']),
  );
}