http헤더값 400자리 넘는거 축약 로직 제거.

This commit is contained in:
cho
2026-02-03 17:49:52 +09:00
parent 562f0bc0ee
commit e83c699dc5
@@ -60,10 +60,7 @@ public class HttpAdapterExtraLogUtil {
String value = httpAdapterExtraHeaderVo.getValue();
if (StringUtils.isNotBlank(value) && value.length() > 400) {
value = value.substring(0, 400) + "...";
httpAdapterExtraHeaderVo.setValue(value);
} else if (value == null) {
if (value == null) {
httpAdapterExtraHeaderVo.setValue(" ");
}