1
0
mirror of synced 2025-01-26 10:11: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; return true;
} else { } else {
if ($this->logger) { if ($this->logger) {
$errorMsg = $response['error_msg'] ?? ''; $errorMsg = $response['errorMsg'] ?? '';
$this->logger->warning("Failed to update module configuration[account={$this->getAccount()->getCrmUrl()}]:{$errorMsg}"); $errors = json_encode($response['errors'] ?? '');
$this->logger->warning("Failed to update module configuration[account={$this->getAccount()->getCrmUrl()}]: {$errorMsg}. Detailed errors: {$errors}");
} }
return false; return false;