We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51b5f2 commit b00ed88Copy full SHA for b00ed88
app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php
@@ -87,8 +87,11 @@ public function execute()
87
$this->productRepository->delete($product);
88
$productDeleted++;
89
} catch (LocalizedException $exception) {
90
+ $this->messageManager->addErrorMessage((string)$exception); /** @FIXME Temporary for Debugging purposes */
91
$this->logger->error($exception->getLogMessage());
92
$productDeletedError++;
93
+ } catch (\Exception $e) {
94
+ $this->messageManager->addErrorMessage((string)$e); /** @FIXME Temporary for Debugging purposes */
95
}
96
97
0 commit comments