Update functional tests to use the PSR NullLogger

This avoids using the deprecated NullLogger in tests.
This commit is contained in:
Christophe Coevoet 2014-12-29 21:47:13 +01:00
parent 0469ea82b1
commit 30cff2605e
3 changed files with 3 additions and 3 deletions

View File

@ -11,4 +11,4 @@ framework:
storage_id: session.storage.mock_file
services:
logger: { class: Symfony\Component\HttpKernel\Log\NullLogger }
logger: { class: Psr\Log\NullLogger }

View File

@ -12,7 +12,7 @@ framework:
profiler: { only_exceptions: false }
services:
logger: { class: Symfony\Component\HttpKernel\Log\NullLogger }
logger: { class: Psr\Log\NullLogger }
security:
firewalls:

View File

@ -12,4 +12,4 @@ framework:
profiler: { only_exceptions: false }
services:
logger: { class: Symfony\Component\HttpKernel\Log\NullLogger }
logger: { class: Psr\Log\NullLogger }