mirror of
https://github.com/valitydev/proxy-mocketbank.git
synced 2024-11-06 01:55:16 +00:00
parent
0c66aee339
commit
65295dbd7b
@ -56,7 +56,7 @@ public class CdsApi {
|
||||
public CardData getCardData(String token) throws TException {
|
||||
LOGGER.info("Storage getCardData: token {}", token);
|
||||
CardData cardData = storageSrv.getCardData(token);
|
||||
LOGGER.info("Storage getCardData: response {}", cardData.toString());
|
||||
LOGGER.info("Storage getCardData: response token {}", token);
|
||||
return cardData;
|
||||
}
|
||||
|
||||
@ -71,7 +71,7 @@ public class CdsApi {
|
||||
public CardData getSessionCardData(String token, String session) throws TException {
|
||||
LOGGER.info("Storage getSessionCardData: token {}, session{} ", token, session);
|
||||
CardData cardData = storageSrv.getSessionCardData(token, session);
|
||||
LOGGER.info("Storage getSessionCardData: response {}", cardData.toString());
|
||||
LOGGER.info("Storage getSessionCardData: response token {}, session{}", token, session);
|
||||
return cardData;
|
||||
}
|
||||
|
||||
@ -83,9 +83,9 @@ public class CdsApi {
|
||||
* @throws TException
|
||||
*/
|
||||
public PutCardDataResult putCardData(CardData cardData) throws TException {
|
||||
LOGGER.info("Storage putCardData: cardData {} ", cardData);
|
||||
LOGGER.info("Storage putCardData: cardData");
|
||||
PutCardDataResult result = storageSrv.putCardData(cardData);
|
||||
LOGGER.info("Storage putCardData: response {}", result.toString());
|
||||
LOGGER.info("Storage putCardData: response");
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user