Home
last modified time | relevance | path

Searched refs:thresholdMap (Results 1 – 1 of 1) sorted by path

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DOverflowHandler.php43 private $thresholdMap = [ variable in Monolog\\Handler\\OverflowHandler
63 * @param int[] $thresholdMap Dictionary of logger level => threshold
67 array $thresholdMap = [], argument
72 foreach ($thresholdMap as $thresholdLevel => $threshold) {
73 $this->thresholdMap[$thresholdLevel] = $threshold;
98 if (!isset($this->thresholdMap[$level])) {
99 $this->thresholdMap[$level] = 0;
102 if ($this->thresholdMap[$level] > 0) {
104 $this->thresholdMap[$level]--;
110 if ($this->thresholdMap[$level] == 0) {
[all …]