Skip to content
Snippets Groups Projects
Commit c5c85de5 authored by Luca Rossi's avatar Luca Rossi Committed by Conrad Lara
Browse files

Issue #3469460 by luxx91: Use LoggerInterface instead of LoggerChannelInterface

parent 30c6db45
No related branches found
No related tags found
1 merge request!64Issue #3469460: use LoggerInterface instead of LoggerChannelInterface
Pipeline #331058 failed
......@@ -8,7 +8,6 @@ use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Lock\LockBackendInterface;
use Drupal\Core\Logger\LoggerChannelInterface;
use Drupal\Core\Routing\TrustedRedirectResponse;
use Drupal\Core\Site\Settings;
use Drupal\Core\StreamWrapper\StreamWrapperManager;
......@@ -16,6 +15,7 @@ use Drupal\Core\StreamWrapper\StreamWrapperManagerInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\image\ImageStyleInterface;
use Psr\Log\LoggerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
......@@ -63,7 +63,7 @@ final class NewS3fsImageStyleDownloadController implements ContainerInjectionInt
/**
* The S3fs logger channel.
*
* @var \Drupal\Core\Logger\LoggerChannelInterface
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
......@@ -72,7 +72,7 @@ final class NewS3fsImageStyleDownloadController implements ContainerInjectionInt
StreamWrapperManagerInterface $stream_wrapper_manager,
ConfigFactoryInterface $config,
EntityTypeManagerInterface $entity_type_manager,
LoggerChannelInterface $logger,
LoggerInterface $logger,
TranslationInterface $string_translation
) {
$this->lock = $lock;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment