List of questions
Related questions
Question 63 - Certified B2C Commerce Developer discussion
A developer is asked to write a log containing the ID and name of the product with a variable named myProduct.
Which snippet of code should be used?
A.
Logger.warn('The current product is ${myProduct.getID()} with name ${myProduct.getName()}');
B.
Logger.warn('The current product is {0} with name {1}', myProduct.getID(), myProduct.getName());
C.
Logger.warn('The current product is %s with name %s').context(myProduct.getID(), myProduct.getName());
D.
Logger.warn('The current product is {0} with name {1}'}.context(myProduct.getID(), myProduct.getName());
Your answer:
0 comments
Sorted by
Leave a comment first