नई फ़ाइल के साथ अस्थायी प्रिंट लॉग
$writer = new \Zend\Log\Writer\Stream(BP . '/var/log/logfile.log');
$logger = new \Zend\Log\Logger();
$logger->addWriter($writer);
$logger->info('Simple Text Log'); // Simple Text Log
$logger->info('Array Log'.print_r($myArrayVar, true)); // Array Log
फैक्टरी विधि
आपको लॉगर ऑब्जेक्ट को कॉल करने के लिए कंस्ट्रक्टर में \ Psr \ Log \ LoggerInterface वर्ग इंजेक्षन करने की आवश्यकता है
protected $_logger;
public function __construct(
...
\Psr\Log\LoggerInterface $logger
...
) {
$this->_logger = $logger;
}
public function logExample() {
//To print string Output in debug.log
$this->_logger->addDebug('Your Text Or Variables');
// To print array Output in system.log
$this->_logger->log('600', print_r($yourArray, true));
}
या आप सीधे phtml फ़ाइल में इस कोड का उपयोग करते हैं:
Debug.log में स्ट्रिंग आउटपुट प्रिंट करने के लिए
\Magento\Framework\App\ObjectManager::getInstance()
->get('Psr\Log\LoggerInterface')->debug('Your Message');
System.log में सरणी आउटपुट प्रिंट करने के लिए
$myArray = array('test1'=>'123', 'test2'=>'123', 'test3'=>'123');
$level = '100'; // use one of: 100, 200, 250, 300, 400, 500, 550, 600
\Magento\Framework\App\ObjectManager::getInstance()
->get('Psr\Log\LoggerInterface')
->log($level, print_r($myArray, true));