di.xml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
  9. <preference for="Magento\Quote\Model\Quote\Address\RateCollectorInterface" type="Magento\Shipping\Model\Shipping" />
  10. <preference for="Magento\Shipping\Model\CarrierFactoryInterface" type="Magento\Shipping\Model\CarrierFactory" />
  11. <preference for="Magento\Shipping\Model\Carrier\Source\GenericInterface" type="Magento\Shipping\Model\Carrier\Source\GenericDefault" />
  12. <virtualType name="Magento\Shipping\Model\Carrier\VirtualDebug" type="Magento\Framework\Logger\Handler\Base">
  13. <arguments>
  14. <argument name="fileName" xsi:type="string">/var/log/shipping.log</argument>
  15. </arguments>
  16. </virtualType>
  17. <virtualType name="Magento\Shipping\Model\Method\VirtualLogger" type="Magento\Framework\Logger\Monolog">
  18. <arguments>
  19. <argument name="handlers" xsi:type="array">
  20. <item name="debug" xsi:type="object">Magento\Shipping\Model\Carrier\VirtualDebug</item>
  21. </argument>
  22. </arguments>
  23. </virtualType>
  24. <type name="Magento\Shipping\Model\Carrier\AbstractCarrier">
  25. <arguments>
  26. <argument name="logger" xsi:type="object">Magento\Shipping\Model\Method\VirtualLogger</argument>
  27. </arguments>
  28. </type>
  29. </config>