http헤더값 400자리 넘는거 축약 로직 제거.
This commit is contained in:
@@ -60,10 +60,7 @@ public class HttpAdapterExtraLogUtil {
|
|||||||
|
|
||||||
String value = httpAdapterExtraHeaderVo.getValue();
|
String value = httpAdapterExtraHeaderVo.getValue();
|
||||||
|
|
||||||
if (StringUtils.isNotBlank(value) && value.length() > 400) {
|
if (value == null) {
|
||||||
value = value.substring(0, 400) + "...";
|
|
||||||
httpAdapterExtraHeaderVo.setValue(value);
|
|
||||||
} else if (value == null) {
|
|
||||||
httpAdapterExtraHeaderVo.setValue(" ");
|
httpAdapterExtraHeaderVo.setValue(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user