constant LoggerChannel::MAX_CALL_DEPTH

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;

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Logger!LoggerChannel.php/constant/LoggerChannel::MAX_CALL_DEPTH/8.1.x