We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22686da commit ed15b8cCopy full SHA for ed15b8c
src/device.ts
@@ -272,6 +272,9 @@ export class Device {
272
setProperty(propertyName: string, value: Any, meta: Any): Promise<Any> {
273
const property = this.findProperty(propertyName);
274
if (property) {
275
+ if (meta) {
276
+ console.log("gateway-addon-node: setProperty: meta: ", meta);
277
+ }
278
return property.setValue(value, meta);
279
}
280
0 commit comments