From 7b8661423b125c6b84c799ae321d0e98f9be60de Mon Sep 17 00:00:00 2001 From: Sebastian Zoglowek <55794780+zoglo@users.noreply.github.com> Date: Tue, 12 Dec 2023 00:14:58 +0100 Subject: [PATCH] Fix typo for log message --- src/StyleManager/Sync.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StyleManager/Sync.php b/src/StyleManager/Sync.php index f3e311d..476b240 100644 --- a/src/StyleManager/Sync.php +++ b/src/StyleManager/Sync.php @@ -73,7 +73,7 @@ public function shouldRunObjectConversion($table = null): bool if (is_numeric($key) && empty(StyleManagerModel::findById($key))) { // Skip if the configuration was already converted or can not be found anymore as the PK does not exist - $this->logger->error('Style Manager conversion for table "'.$table.'" and id "'.$key.'" has been skipped due to primary key not existing anymore.)'); + $this->logger->error('Style Manager conversion for table "'.$table.'" and id "'.$key.'" has been skipped due to primary key not existing anymore.'); return false; }