homebridge-netatmo-temperature 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/platform.js +2 -1
  2. package/package.json +1 -1
package/dist/platform.js CHANGED
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NetatmoPlatform = void 0;
4
4
  const { NetatmoApi } = require("./netatmoApi");
5
+ const { PLUGIN_NAME } = require("./settings");
5
6
  class NetatmoPlatform {
6
7
  constructor(log, config, api) {
7
8
  this.log = log;
@@ -39,7 +40,7 @@ class NetatmoPlatform {
39
40
  this.log.info('Netatmo: total sensors registered:', modules.length);
40
41
  }
41
42
  catch (e) {
42
- this.log.error('Failed to get initial Netatmo data');
43
+ this.log.error('Failed to get initial Netatmo data:', e);
43
44
  return;
44
45
  }
45
46
  // Start polling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-netatmo-temperature",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Homebridge plugin for Netatmo weather station temperatures in Apple HomeKit",
5
5
  "license": "Apache-2.0",
6
6
  "author": "trama2000",