class NullLogger in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/http-kernel/Log/NullLogger.php \Symfony\Component\HttpKernel\Log\NullLogger
- 8 vendor/psr/log/Psr/Log/NullLogger.php \Psr\Log\NullLogger
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Log/NullLogger.php \Symfony\Component\HttpKernel\Log\NullLogger
NullLogger.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Psr\Log\AbstractLogger implements LoggerInterface
- class \Psr\Log\NullLogger
- class \Symfony\Component\HttpKernel\Log\NullLogger implements LoggerInterface
- class \Psr\Log\NullLogger
Expanded class hierarchy of NullLogger
File
- vendor/
symfony/ http-kernel/ Log/ NullLogger.php, line 23
Namespace
Symfony\Component\HttpKernel\LogView source
class NullLogger extends PsrNullLogger implements LoggerInterface {
public function emerg($message, array $context = array()) {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.2 and will be removed in 3.0. You should use the new emergency() method instead, which is PSR-3 compatible.', E_USER_DEPRECATED);
}
public function crit($message, array $context = array()) {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.2 and will be removed in 3.0. You should use the new critical() method instead, which is PSR-3 compatible.', E_USER_DEPRECATED);
}
public function err($message, array $context = array()) {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.2 and will be removed in 3.0. You should use the new error() method instead, which is PSR-3 compatible.', E_USER_DEPRECATED);
}
public function warn($message, array $context = array()) {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.2 and will be removed in 3.0. You should use the new warning() method instead, which is PSR-3 compatible.', E_USER_DEPRECATED);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AbstractLogger:: |
public | function |
Action must be taken immediately. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Critical conditions. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Detailed debug information. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
System is unusable. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Runtime errors that do not require immediate action but should typically
be logged and monitored. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Interesting events. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Normal but significant events. Overrides LoggerInterface:: |
|
AbstractLogger:: |
public | function |
Exceptional occurrences that are not errors. Overrides LoggerInterface:: |
|
NullLogger:: |
public | function |
Overrides LoggerInterface:: |
|
NullLogger:: |
public | function |
Overrides LoggerInterface:: |
|
NullLogger:: |
public | function |
Overrides LoggerInterface:: |
|
NullLogger:: |
public | function |
Logs with an arbitrary level. Overrides LoggerInterface:: |
|
NullLogger:: |
public | function |
Overrides LoggerInterface:: |