@byted-apaas/server-sdk-node 1.1.15-beta.3 → 1.1.15-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byted-apaas/server-sdk-node",
3
- "version": "1.1.15-beta.3",
3
+ "version": "1.1.15-beta.4",
4
4
  "description": "aPaaS Server SDK",
5
5
  "author": "zhouwexin <zhouwexin@bytedance.com>",
6
6
  "homepage": "",
@@ -318,9 +318,8 @@ async function getRecordsOrCountByCriterion(objectApiName, criterion, fuzzySearc
318
318
  if (authType) {
319
319
  options.headers[constants_3.AuthTypeHttpHeader] = authType;
320
320
  }
321
- utils.printInfoLog(`getRecordsOrCountByCriterion start, options: ${JSON.stringify(options)}, urlPath: ${urlPath}, logID: ${utils.getLogID()}`);
321
+ utils.printInfoLog(`getRecordsOrCountByCriterion start, options: ${options}, urlPath: ${urlPath}, logID: ${utils.getLogID()}`);
322
322
  let data = await openapi.doRequest(null, urlPath, options);
323
- utils.printInfoLog(`getRecordsOrCountByCriterion end, options: ${JSON.stringify(options)}, result: ${JSON.stringify(data)}, urlPath: ${urlPath}, logID: ${utils.getLogID()}`);
324
323
  return handleResponse(objectApiName, data, needCount);
325
324
  }
326
325
  /**