@@ -54,6 +54,7 @@ public class PropertyLogHandler extends AbstractMediator {
5454 private static final String CONSUMER_KEY = "api.ut.consumerKey" ;
5555 private static final String BIZAO_TOKEN = "bizao-token" ;
5656 private static final String BIZAO_ALIAS = "bizao-alias" ;
57+ private static final String COUNTRY_CODE = "Country-code" ;
5758
5859 private static final Log logHandler = LogFactory .getLog ("REQUEST_RESPONSE_LOGGER" );
5960
@@ -91,7 +92,8 @@ private void logRequestProperties(MessageContext messageContext, org.apache.axis
9192 ",METHOD:" + messageContext .getProperty (METHOD ) +
9293 ",BODY:" + requestPayload .replaceAll ("\n " , "" ) +
9394 ",BIZAO_TOKEN:" +messageContext .getProperty (BIZAO_TOKEN ) +
94- ",BIZAO_ALIAS:" +messageContext .getProperty (BIZAO_ALIAS )
95+ ",BIZAO_ALIAS:" +messageContext .getProperty (BIZAO_ALIAS ) +
96+ ",COUNTRY_CODE:" +messageContext .getProperty (COUNTRY_CODE )
9597 );
9698 }
9799 }
@@ -124,7 +126,8 @@ private void logErrorProperties(MessageContext messageContext, org.apache.axis2.
124126 ",HTTP_STATUS:" + axis2MessageContext .getProperty (HTTP_SC ) + "" +
125127 ",ERROR_MESSAGE:" + messageContext .getProperty (ERROR_MESSAGE ) +
126128 ",BIZAO_TOKEN:" +messageContext .getProperty (BIZAO_TOKEN ) +
127- ",BIZAO_ALIAS:" +messageContext .getProperty (BIZAO_ALIAS )
129+ ",BIZAO_ALIAS:" +messageContext .getProperty (BIZAO_ALIAS ) +
130+ ",COUNTRY_CODE:" +messageContext .getProperty (COUNTRY_CODE )
128131 );
129132 }
130133 }
0 commit comments