logPluginNotification method
Log a notification from the plugin with the given pluginId.
Implementation
@override
void logPluginNotification(String pluginId, String notification) {
  for (var service in _services) {
    service.logPluginNotification(pluginId, notification);
  }
}