Skip to content

Instantly share code, notes, and snippets.

@GideonBabu
Created July 6, 2018 10:20
Show Gist options
  • Save GideonBabu/7a49882d5ebde5ee95003542ed4846cb to your computer and use it in GitHub Desktop.
Save GideonBabu/7a49882d5ebde5ee95003542ed4846cb to your computer and use it in GitHub Desktop.
Magento 2 write logs into custom file
$writer = new \Zend\Log\Writer\Stream(BP . '/var/log/test.log');
$logger = new \Zend\Log\Logger();
$logger->addWriter($writer);
$logger->info('Your text message');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment