ldn-inbox-server 1.5.2 → 1.5.3

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.
@@ -43,22 +43,29 @@ async function handle({path,options,config}) {
43
43
  }
44
44
  else {
45
45
  // Nope ..
46
+ logger.error(`found ${path} not includes ${value}`);
46
47
  }
47
48
  }
48
49
  else if (typeof jsonValue === 'string' || typeof jsonValue === 'number') {
49
50
  if (jsonValue === value) {
50
51
  // Yup ..
51
- logger.info(`found ${path} === ${value} `)
52
+ logger.info(`found ${path} === ${value} `);
52
53
  matchCount++
53
54
  }
54
55
  else {
55
56
  // Nope ..
57
+ logger.error(`found ${path} !== ${value}`);
56
58
  }
57
59
  }
58
60
  else {
59
61
  // Nope ..
62
+ logger.error(`found ${path} unexpected value`);
60
63
  }
61
64
  }
65
+ else {
66
+ // Nope ..
67
+ logger.error(`no ${path} found`);
68
+ }
62
69
  }
63
70
  if (matchCount == anyOf[i].length) {
64
71
  isOk = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ldn-inbox-server",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "A demonstration Event Notifications Inbox server",
5
5
  "main": "lib/index.js",
6
6
  "author": "Patrick Hochstenbach <Patrick.Hochstenbach@UGent.be>",