Skip to content

Commit eb9d7f6

Browse files
committed
Remove logging
1 parent bbcdf2e commit eb9d7f6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/services/cloudDevice/cloudDeviceApi.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -235,21 +235,15 @@ class CloudDeviceAPI extends Service {
235235
securedPaymentRequest
236236
);
237237

238-
console.log(jsonResponse);
239-
240238
const cloudDeviceApiSecuredResponse: CloudDeviceApiSecuredResponse =
241239
ObjectSerializer.deserialize(jsonResponse, "CloudDeviceApiSecuredResponse");
242240

243-
console.log(cloudDeviceApiSecuredResponse);
244-
245241
// decrypt SaleToPOISecuredMessage
246242
const decryptedPayload = NexoSecurityManager.decrypt(
247243
cloudDeviceApiSecuredResponse.SaleToPOIResponse,
248244
encryptionCredentialDetails,
249245
);
250246

251-
console.log(decryptedPayload);
252-
253247
return ObjectSerializer.deserialize(JSON.parse(decryptedPayload), "CloudDeviceApiResponse");
254248

255249
} catch (err: any) {

0 commit comments

Comments
 (0)