homebridge-tasmota-control 1.7.2 → 1.7.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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -160,7 +160,7 @@ class tasmotaPlatform {
|
|
|
160
160
|
i++;
|
|
161
161
|
}
|
|
162
162
|
} catch (error) {
|
|
163
|
-
if (logLevel.error)
|
|
163
|
+
if (logLevel.error) throw new Error(`Device: ${host} ${deviceName}, Did finish launching error: ${error}.`);
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
166
|
});
|
package/package.json
CHANGED