From 525496e18c5f2af8c8a662a60c38d5c73213ca85 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Wed, 11 Aug 2021 11:28:55 -0400 Subject: [PATCH] remove console.log --- lib/rest/rest-entity.js | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/rest/rest-entity.js b/lib/rest/rest-entity.js index 6a05a78..d0b9aa1 100644 --- a/lib/rest/rest-entity.js +++ b/lib/rest/rest-entity.js @@ -17,7 +17,6 @@ class RestEntity { async update(sid, opts) { if (this.validators.update) this.validators.update(opts); - console.log({sid, opts}); const res = await this.put(`Accounts/${this.accountSid}/${this.name}/${sid}`, opts); if (res.statusCode === 404) throw new Error(`${this.name}.update: sid ${sid} not found`); if (![202, 204].includes(res.statusCode)) { diff --git a/package.json b/package.json index 6f6b082..c0fdff5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jambonz/node-client", - "version": "0.2.3", + "version": "0.2.4", "description": "", "main": "lib/index.js", "scripts": {