Magento 2 – Writing Messages to a Log File

loggingmagento2

How do enable logging in Magento 2, i'm in development mode, i've checked file permissions on all the log files and they all have write access. Magento errors are also visible. Is there anything else i need to do?

i'm just trying to write "test" to the logs for now, i've instantiated the logger class through DI and i'm calling debug as follows:

$this->_logger->debug("test");

I've checked the debug.log and the system.log and there's nothing in there?

Best Answer

Use below code for print in log file

$this->_logger->log(\Psr\Log\LogLevel::DEBUG, "test");
Related Topic