Skip to content

Commit adf8513

Browse files
author
shlokgilda
committed
Added logging statements.
1 parent a47905a commit adf8513

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/models/shared/Economy.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,12 @@ class EconomyModel extends SharedBase {
545545
}
546546
};
547547

548-
const queryResponse = await oThis.ddbServiceObj.query(tokenSymbolQueryParams),
549-
formattedResponse = await oThis._fetchCompleteDataOfToken(queryResponse);
548+
console.log('===tokenSymbolQueryParams====', tokenSymbolQueryParams);
549+
550+
const queryResponse = await oThis.ddbServiceObj.query(tokenSymbolQueryParams);
551+
console.log('====queryResponse=====', queryResponse);
552+
const formattedResponse = await oThis._fetchCompleteDataOfToken(queryResponse);
553+
console.log('===formattedResponse=====', formattedResponse);
550554

551555
return responseHelper.successWithData(formattedResponse);
552556
}

0 commit comments

Comments
 (0)