Skip to content

Instantly share code, notes, and snippets.

@gelanivishal
Created June 13, 2017 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gelanivishal/bb67de17121cb21912edc8995a62b6af to your computer and use it in GitHub Desktop.
Save gelanivishal/bb67de17121cb21912edc8995a62b6af to your computer and use it in GitHub Desktop.
Create custom log file in magento2
<?php
// Create custom log file in var/log/...
$writer = new \Zend\Log\Writer\Stream(BP . '/var/log/XYZ.log'); // Whatever name you want
$logger = new \Zend\Log\Logger();
$logger->addWriter($writer);
$logger->info('Amazon Request'); // Set simple text in log file
$logger->info(print_r($array_of_content, true)); // array you want to log file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment