|
@@ -218,7 +218,7 @@ public class LogAspect
|
|
|
{
|
|
|
for (int i = 0; i < paramsArray.length; i++)
|
|
|
{
|
|
|
- if (!isFilterObject(paramsArray[i]))
|
|
|
+ if (StringUtils.isNotNull(paramsArray[i]) && !isFilterObject(paramsArray[i]))
|
|
|
{
|
|
|
Object jsonObj = JSONObject.toJSONString(paramsArray[i], excludePropertyPreFilter());
|
|
|
params += jsonObj.toString() + " ";
|