php-symfonyHow to set the log level in PHP Symfony?
The log level in PHP Symfony can be set by using the logger
service.
$logger = $this->get('logger');
$logger->setLevel(Logger::ERROR);
The above code sets the log level to ERROR
.
The following are the available log levels in PHP Symfony:
Logger::EMERGENCY
: System is unusableLogger::ALERT
: Action must be taken immediatelyLogger::CRITICAL
: Critical conditionsLogger::ERROR
: Error conditionsLogger::WARNING
: Warning conditionsLogger::NOTICE
: Normal but significant conditionLogger::INFO
: Informational messagesLogger::DEBUG
: Debug-level messages
Helpful links
More of Php Symfony
- How to generate a model in PHP Symfony?
- How to install Symfony on Windows?
- How to install PHP Symfony on Ubuntu?
- How to create a model in PHP Symfony?
- How to use Twig in Symfony with PHP?
- How to implement pagination in PHP Symfony?
- How to check PHP Symfony version?
- How to use Swagger with Symfony and PHP?
- How to use websockets in PHP Symfony?
- How to use the PHP Symfony findBy method?
See more codes...