QuietLogHandler.php 327 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Migration\TestFramework;
  7. class QuietLogHandler extends \Monolog\Handler\AbstractProcessingHandler
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. protected function write(array $record)
  13. {
  14. return;
  15. }
  16. }