1
0
mirror of synced 2025-01-25 01:31:41 +03:00

Fix logging in updateModuleConfiguration method

This commit is contained in:
gridnev 2020-09-03 15:15:43 +03:00
parent 92a0e575d4
commit ab67b455fb

View File

@ -163,8 +163,9 @@ abstract class ModuleManager implements ModuleManagerInterface
return true;
} else {
if ($this->logger) {
$errorMsg = $response['error_msg'] ?? '';
$this->logger->warning("Failed to update module configuration[account={$this->getAccount()->getCrmUrl()}]:{$errorMsg}");
$errorMsg = $response['errorMsg'] ?? '';
$errors = json_encode($response['errors'] ?? '');
$this->logger->warning("Failed to update module configuration[account={$this->getAccount()->getCrmUrl()}]: {$errorMsg}. Detailed errors: {$errors}");
}
return false;