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 a6e4078 commit d64e3d6Copy full SHA for d64e3d6
Atomx/AtomxClient.php
@@ -85,7 +85,9 @@ public function login()
85
]
86
]);
87
} catch (ApiException $e) {
88
- throw new ApiException('Unable to login to API!');
+ $message = str_replace($e->getMessage(), $this->accountStore->getPassword(), '[redacted]');
89
+
90
+ throw new ApiException('Unable to login to API! Message: ' . $message);
91
}
92
93
$this->requiresLogin = true;
0 commit comments