diff --git a/src/Drupal/Commands/core/WatchdogCommands.php b/src/Drupal/Commands/core/WatchdogCommands.php index bf43f378ac..c8c9c307f5 100644 --- a/src/Drupal/Commands/core/WatchdogCommands.php +++ b/src/Drupal/Commands/core/WatchdogCommands.php @@ -122,20 +122,9 @@ public function watchdogList($substring = '', $options = ['format' => 'table', ' * Continously tail watchdog messages, filtering on type equals php. * @aliases wd-tail,wt,watchdog-tail * @validate-module-enabled dblog - * @field-labels - * wid: ID - * type: Type - * message: Message - * severity: Severity - * location: Location - * hostname: Hostname - * date: Date - * username: Username - * @default-fields wid,date,type,severity,message - * @filter-default-field message * @version 10.6 */ - public function tail(OutputInterface $output, $substring = '', $options = ['format' => 'table', 'severity' => self::REQ, 'type' => self::REQ, 'extended' => false]): void + public function tail(OutputInterface $output, $substring = '', $options = ['severity' => self::REQ, 'type' => self::REQ, 'extended' => false]): void { $where = $this->where($options['type'], $options['severity'], $substring); if (empty($where['where'])) {