πΊπ¦Ukraine BR0kEN Dnipro
Thanks. Released as https://www.drupal.org/project/apptiles/releases/4.0.0 β
πΊπ¦Ukraine BR0kEN Dnipro
πΊπ¦Ukraine BR0kEN Dnipro
Thanks. Released as https://www.drupal.org/project/entity_router/releases/3.0.0 β
πΊπ¦Ukraine BR0kEN Dnipro
quietone β credited BR0kEN β .
β¨ | Drupal core | Enable users to determine which types of log messages get written to dblog/syslog. Right now it's all or nothing.
πΊπ¦Ukraine BR0kEN Dnipro
-
+++ b/core/lib/Drupal/Core/Logger/LoggerChannel.php @@ -79,6 +80,11 @@ class LoggerChannel implements LoggerChannelInterface { /**
Missing the documentation of the property.
-
+++ b/core/lib/Drupal/Core/Logger/LoggerChannel.php @@ -79,6 +80,11 @@ class LoggerChannel implements LoggerChannelInterface { + * @var array
Better to change to `string[]`.
-
+++ b/core/lib/Drupal/Core/Logger/LoggerChannel.php @@ -79,6 +80,11 @@ class LoggerChannel implements LoggerChannelInterface { + protected $log_filter = [];
Should be `$logFilters` I believe.
-
+++ b/core/lib/Drupal/Core/Logger/LoggerChannel.php @@ -133,7 +148,22 @@ public function log($level, $message, array $context = []) { + if ($setting_channel == $this->channel &&
Put the condition per line.
-
+++ b/core/lib/Drupal/Core/Logger/LoggerChannel.php @@ -133,7 +148,22 @@ public function log($level, $message, array $context = []) { + $suppressed = TRUE;
Shouldn't we have `break` or even `return` here?