I need to use an API which accepts hash map as an argument.
However, there was requirement to print a log whenever I insert a value for a key in the map. Values for the keys are assigned by reading from the external csv file.
For instance,
Map<String,String> myMap = new HashMap<String,String>();
myMap.put("nodeId", myMap.get("nodeIDForCreationOfTrackedAsset"));
myMap.put("templateAssetID", myMap.get("assetIdForServiceHistory"));
myMap.put("seqId", "{{db.WM_TS001.SeqNum}}");
myMap.put("badgeId", "{{db.WM_TS001.BadgeNum}}");
myMap.put("serialId","{{db.WM_TS001.SerialNum}}");
So everytime when I use myMap.put(key,value), it should print a log to an external file, some thing like below
element nodeId is assigned to "value" successfully.
element seqId is assigned to "value" successfully.
element templateAssetID is assigned to "value" successfully.
element badgeId is assigned to "value" successfully.
element serialId is assigned to "value" successfully.
Is there any generic way to do this, such that log can be printed through the program whenever myMap.put(key,value) is encountered.