Maximum call depth to self::log() for a single log message.
It's very easy for logging channel code to call out to other library code that will create log messages. In that case, we will recurse back in to LoggerChannel::log() multiple times while processing a single originating message. To prevent infinite recursion, we track the call depth and bail out at LoggerChannel::MAX_CALL_DEPTH iterations.
File
- core/lib/Drupal/Core/Logger/LoggerChannel.php, line 28
Class
- LoggerChannel
- Defines a logger channel that most implementations will use.
Namespace
Drupal\Core\Logger
Code
const MAX_CALL_DEPTH = 5;
Please login to continue.