Skip to content

Commit 62a348b

Browse files
committed
Add gold back into array and also include loyalty_level in success log
1 parent 56cc42c commit 62a348b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/paymentservice/charge.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const tracer = trace.getTracer('paymentservice');
1313
const meter = metrics.getMeter('paymentservice');
1414
const transactionsCounter = meter.createCounter('app.payment.transactions');
1515

16-
const LOYALTY_LEVEL = ['platinum', 'silver', 'bronze'];
16+
const LOYALTY_LEVEL = ['platinum', 'gold', 'silver', 'bronze'];
1717

1818
/** Return random element from given array */
1919
function random(arr) {
@@ -51,10 +51,12 @@ module.exports.charge = async request => {
5151
const card = cardValidator(number);
5252
const { card_type: cardType, valid } = card.getCardDetails();
5353

54+
const loyalty_level = random(LOYALTY_LEVEL);
55+
5456
span.setAttributes({
5557
'app.payment.card_type': cardType,
5658
'app.payment.card_valid': valid,
57-
'app.loyalty.level': random(LOYALTY_LEVEL)
59+
'app.loyalty.level': loyalty_level
5860
});
5961

6062
if (!valid) {
@@ -78,7 +80,7 @@ module.exports.charge = async request => {
7880
}
7981

8082
const { units, nanos, currencyCode } = request.amount;
81-
logger.info({ transactionId, cardType, lastFourDigits, amount: { units, nanos, currencyCode } }, 'Transaction complete.');
83+
logger.info({ transactionId, cardType, lastFourDigits, amount: { units, nanos, currencyCode }, loyalty_level }, 'Transaction complete.');
8284
transactionsCounter.add(1, { 'app.payment.currency': currencyCode });
8385
span.end();
8486

0 commit comments

Comments
 (0)