:::: MENU ::::

Magento Tutorial | Magento Blog | Learn Magento 2

Cookies Consent Popup

Showing posts with label Generate custom log in Magento 2. Show all posts
Showing posts with label Generate custom log in Magento 2. Show all posts
Put below code in anywhere in magento2 :- $writer = new \Zend\Log\Writer\Stream(BP . '/var/log/custom.log');$logger = new \Zend\Log\Logger();$logger->addWriter($writer);$logger->info("Product Info ". $product->getSku() . "----- Id  ". $product->getId() );
Or you can try this : file_put_contents(BP . '/var/log/events.log', "$eventName\n", FILE_APPEND);