BigTech 어댑터 로그 출력 부분 수정
This commit is contained in:
+2
-1
@@ -84,13 +84,14 @@ public class HttpClient5AdapterServiceBigTech extends HttpClient5AdapterServiceR
|
|||||||
String timestamp = System.currentTimeMillis() + "";
|
String timestamp = System.currentTimeMillis() + "";
|
||||||
String accessKey = customProp.getProperty("_BTP_ACCESS_KEY", _BTP_ACCESS_KEY);
|
String accessKey = customProp.getProperty("_BTP_ACCESS_KEY", _BTP_ACCESS_KEY);
|
||||||
String secretKey = customProp.getProperty("_BTP_SECRET_KEY", _BTP_SECRET_KEY);
|
String secretKey = customProp.getProperty("_BTP_SECRET_KEY", _BTP_SECRET_KEY);
|
||||||
|
if(logger.isDebug()) {
|
||||||
logger.debug("charset={}", charset);
|
logger.debug("charset={}", charset);
|
||||||
logger.debug("algorithm={}", algorithm);
|
logger.debug("algorithm={}", algorithm);
|
||||||
logger.debug("timestamp={}", timestamp);
|
logger.debug("timestamp={}", timestamp);
|
||||||
logger.debug("accessKey={}", accessKey);
|
logger.debug("accessKey={}", accessKey);
|
||||||
logger.debug("secretKey={}", MaskingUtils.maskPassword(secretKey));
|
logger.debug("secretKey={}", MaskingUtils.maskPassword(secretKey));
|
||||||
logger.debug("url={}", method.getRequestUri());
|
logger.debug("url={}", method.getRequestUri());
|
||||||
|
}
|
||||||
|
|
||||||
String signature = macHex(charset// charset
|
String signature = macHex(charset// charset
|
||||||
, algorithm// algorithm
|
, algorithm// algorithm
|
||||||
|
|||||||
Reference in New Issue
Block a user