diff --git a/src/FeaturesServiceProvider.php b/src/FeaturesServiceProvider.php index 683245a..954cc24 100644 --- a/src/FeaturesServiceProvider.php +++ b/src/FeaturesServiceProvider.php @@ -4,7 +4,6 @@ namespace Drupal\features; use Drupal\Core\DependencyInjection\ContainerBuilder; use Drupal\Core\DependencyInjection\ServiceProviderBase; -use Drupal\Core\Url; /** * Service provider implementation for Features to override config.installer. @@ -22,12 +21,8 @@ class FeaturesServiceProvider extends ServiceProviderBase { // Claim the service only if another module hasn't already done so. $current_class = $definition->getClass(); if ($current_class === 'Drupal\Core\Config\ConfigInstaller') { - \Drupal::logger('features')->info('Features has overridden the default configuration installer service to allow installing features on the originating site.'); $definition->setClass('Drupal\features\FeaturesConfigInstaller'); } - else { - \Drupal::logger('features')->warning('Features functionality allowing features to be installed on the originating site has been disabled. See the status report for more details.', [':url' => new Url('system.status')]); - } } }