后端:pingxx 回调接口,增加错误日志

This commit is contained in:
YunaiV
2019-04-21 20:12:10 +08:00
parent 14c98ef1c7
commit e0713cda1f
2 changed files with 17 additions and 1 deletions

View File

@@ -85,4 +85,12 @@ public class CommonResult<T> implements Serializable {
return !isSuccess();
}
}
@Override
public String toString() {
return "CommonResult{" +
"code=" + code +
", message='" + message + '\'' +
", data=" + data +
'}';
}
}