|
@@ -383,9 +383,9 @@ public:
|
|
|
void GetCardInStoreJS(SpReqAnsContext<CardIssuerStoreService_GetCardInStoreJS_Req, CardIssuerStoreService_GetCardInStoreJS_Ans>::Pointer ctx)
|
|
|
{
|
|
|
LOG_FUNCTION();
|
|
|
- //m_fsm.GetCardInStoreJS(ctx);
|
|
|
if (!m_fsm.GetDevInitFlag()) {
|
|
|
ctx->Answer(Error_DevNotAvailable, CardIssuerStore_UserErrorCode_DevOpen_Failed);
|
|
|
+ DbgWithLink(LOG_LEVEL_WARN, LOG_TYPE_SYSTEM)("GetCardInStoreJS but DevOpen failed.");
|
|
|
}
|
|
|
else {
|
|
|
m_fsm.GetCardInStoreJS(ctx);
|
|
@@ -497,7 +497,8 @@ public:
|
|
|
{
|
|
|
LOG_FUNCTION();
|
|
|
if (!m_fsm.GetDevInitFlag()) {
|
|
|
- ctx->Answer(Error_DevNotAvailable, CardIssuerStore_UserErrorCode_DevOpen_Failed);
|
|
|
+ DbgWithLink(LOG_LEVEL_WARN, LOG_TYPE_SYSTEM)("QueryHasCardJS but DevOpen failed.");
|
|
|
+ ctx->Answer(Error_DevNotAvailable, CardIssuerStore_UserErrorCode_DevOpen_Failed);
|
|
|
}
|
|
|
else {
|
|
|
m_fsm.QueryHasCardJS(ctx);
|