@@ -42,7 +42,7 @@ public void chargeCard(final Payload payload) {
42
42
String cardRequestBodyAsString = Utils .convertChargeRequestPayloadToJson (payload );
43
43
String encryptedCardRequestBody = Utils .getEncryptedData (cardRequestBodyAsString , RavePayActivity .getSecretKey ()).trim ().replaceAll ("\\ n" , "" );
44
44
45
- Log .d ("encrypted" , encryptedCardRequestBody );
45
+ // Log.d("encrypted", encryptedCardRequestBody);
46
46
47
47
ChargeRequestBody body = new ChargeRequestBody ();
48
48
body .setAlg ("3DES-24" );
@@ -105,7 +105,7 @@ public void chargeCardWithSuggestedAuthModel(Payload payload, String pin, String
105
105
String cardRequestBodyAsString = Utils .convertChargeRequestPayloadToJson (payload );
106
106
String encryptedCardRequestBody = Utils .getEncryptedData (cardRequestBodyAsString , RavePayActivity .getSecretKey ()).trim ().replaceAll ("\\ n" , "" );
107
107
108
- Log .d ("encrypted" , encryptedCardRequestBody );
108
+ // Log.d("encrypted", encryptedCardRequestBody);
109
109
110
110
ChargeRequestBody body = new ChargeRequestBody ();
111
111
body .setAlg ("3DES-24" );
@@ -295,7 +295,7 @@ public void onSuccess(FeeCheckResponse response) {
295
295
@ Override
296
296
public void onError (String message ) {
297
297
mView .showProgressIndicator (false );
298
- Log .d (RaveConstants .RAVEPAY , message );
298
+ Log .e (RaveConstants .RAVEPAY , message );
299
299
mView .showFetchFeeFailed ("An error occurred while retrieving transaction fee" );
300
300
}
301
301
});
0 commit comments