Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
bump to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandawg93 committed Aug 7, 2020
1 parent 4a9a73a commit 6459640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Homebridge Nest Cam",
"name": "homebridge-nest-cam",
"version": "4.3.0",
"version": "4.4.0",
"description": "Nest cam plugin for homebridge: https://homebridge.io/",
"main": "dist/index.js",
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class NestCamPlatform implements DynamicPlatformPlugin {
.on(CharacteristicEventTypes.GET, async (callback: CharacteristicGetCallback) => {
const info = await camera.updateData();
const value = info.properties[_key];
this.log.info(`Updating info for ${accessory.displayName} ${name}: ${value}`);
this.log.debug(`Updating info for ${accessory.displayName} ${name}`);
callback(null, value);
});

Expand Down

0 comments on commit 6459640

Please sign in to comment.