logPluginException method

  1. @override
void logPluginException(
  1. PluginData plugin,
  2. Object exception,
  3. StackTrace? stackTrace
)
override

Log that the given non-priority exception was thrown, with the given stackTrace by the given plugin.

Implementation

@override
void logPluginException(
    PluginData plugin, Object exception, StackTrace? stackTrace) {
  for (var service in _services) {
    service.logPluginException(plugin, exception, stackTrace);
  }
}