logPluginTimeout method
Log that the given plugin
took too long to execute the given request
.
This doesn't necessarily imply that there is a problem with the plugin,
only that this particular response was not included in the data returned
to the client.
Implementation
@override
void logPluginTimeout(PluginData plugin, String request) {
for (var service in _services) {
service.logPluginTimeout(plugin, request);
}
}