How I can create my own custom logger in magento2 ?
In Magento 1, We simply write own custom log with the following code:
Mage::log("Log Message", null, "log_file.log");
How I can create my own custom logger in magento2 ?
In Magento 1, We simply write own custom log with the following code:
Mage::log("Log Message", null, "log_file.log");
For logging OR creating log file, you should use class "Magento\Framework\Logger\Monolog".
For more see here : http://inchoo.net/magento-2/magento-2-logging/