@ikonintegration/ikapi 4.0.0-alpha15 → 4.0.0-alpha16

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": "@ikonintegration/ikapi",
3
- "version": "4.0.0-alpha15",
3
+ "version": "4.0.0-alpha16",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "main.js",
@@ -12,7 +12,7 @@ export default class IKDBQueryScan extends IKDBBaseQuery {
12
12
  const resp = await this.rawRun(dbManager, appendingItems);
13
13
  if (resp.Items) {
14
14
  let unmarshalled = Utils.decapsulateForDB(resp.Items);
15
- localConsole.debug('Parsed result: ', unmarshalled.substring(0,4000));
15
+ localConsole.debug('Parsed result: ', JSON.stringify(unmarshalled).substring(0,4000));
16
16
  //Check for appending items from previous query
17
17
  if (appendingItems && appendingItems.length > 0) {
18
18
  unmarshalled = unmarshalled.concat(appendingItems);