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

Merge pull request #5 from gridnevalex/fix_logging

Fix logging in updateModuleConfiguration method
This commit is contained in:
Kruglov Kirill 2020-09-03 15:31:56 +03:00 committed by GitHub
commit d6066eecfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;