Skip to content

Commit

Permalink
fix(garbagecollector): correctly log optimize table results
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed Aug 13, 2024
1 parent 5fc8113 commit ff399c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function optimize(bool $use_logger = false): array {
];

if ($use_logger) {
$this->getLogger()->notice($this->translator->translate('garbagecollector:optimize', [$table]) . ' ' . $result ? 'OK' : 'FAILED');
$this->getLogger()->notice($this->translator->translate('garbagecollector:optimize', [$table]) . ': ' . ($result ? 'OK' : 'FAILED'));
}
}

Expand Down

0 comments on commit ff399c2

Please sign in to comment.