node-red-contrib-remote 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.
package/README.md CHANGED
@@ -36,8 +36,11 @@ You will find more information on [www.remote-red-com](https://www.remote-red.co
36
36
 
37
37
  ## Version History
38
38
 
39
+ Version 1.5.3
40
+ - Improved error logging while the instance registration process.
41
+
39
42
  Version 1.5.2
40
- - Compatibility to 'node-red-contrib-remote-cli'
43
+ - Compatibility to 'node-red-contrib-remote-cli'.
41
44
 
42
45
  Version 1.5.1
43
46
  - Added support for running Node-RED with a self signed https certificate.
@@ -55,6 +55,7 @@ module.exports = function(RED) {
55
55
  })
56
56
  .catch((error) => {
57
57
  console.log("ERROR: requestInstanceHash: " + error);
58
+ console.error(error);
58
59
  let errorMessage = error.message;
59
60
  if ( error.response && error.response.data && error.response.data.message ) {
60
61
  errorMessage = errorMessage + " / " + error.response.data.message;
@@ -108,6 +109,7 @@ module.exports = function(RED) {
108
109
  })
109
110
  .catch((error) => {
110
111
  console.log("ERROR: registerApp: " + error);
112
+ console.error(error);
111
113
  let errorMessage = error.message;
112
114
  if ( error.response && error.response.data && error.response.data.message ) {
113
115
  errorMessage = errorMessage + " / " + error.response.data.message;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-remote",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Remote-RED is an ecosystem to bring remote access, push notification and geofencing to Node-RED. There are also additional functions like directly answer on a notification and homescreen widgets.",
5
5
  "author": "Thorsten Heilmann",
6
6
  "license": "GPL-3.0",