File.php 564 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * This file is part of the Klarna Core module
  4. *
  5. * (c) Klarna Bank AB (publ)
  6. *
  7. * For the full copyright and license information, please view the NOTICE
  8. * and LICENSE files that were distributed with this source code.
  9. */
  10. namespace Klarna\Core\Logger\Handlers;
  11. class File extends \Magento\Framework\Logger\Handler\Base
  12. {
  13. /**
  14. * Logging level
  15. *
  16. * @var int
  17. */
  18. protected $loggerType = \Monolog\Logger::DEBUG;
  19. /**
  20. * File name
  21. *
  22. * @var string
  23. */
  24. protected $fileName = '/var/log/klarna_api.log';
  25. }