WANG 6 tahun lalu
induk
melakukan
b1349d7464

+ 1 - 1
src/main/java/cn/com/qmth/examcloud/web/cloud/CloudClientSupport.java

@@ -206,7 +206,7 @@ public abstract class CloudClientSupport {
 			if (INTERFACE_LOG.isDebugEnabled() && getLogProperties().isNormalResponseLogEnable()) {
 				String respEntityBody = respEntity.getBody();
 				int responseJsonMaxSize = getLogProperties().getResponseLogJsonMaxSize();
-				if (respEntityBody.length() > responseJsonMaxSize) {
+				if (null != respEntityBody && respEntityBody.length() > responseJsonMaxSize) {
 					INTERFACE_LOG.debug("[CALL-RESP]. response= too large");
 				} else {
 					INTERFACE_LOG.debug("[CALL-RESP]. response=" + respEntityBody);