remove console.log

This commit is contained in:
Dave Horton
2021-08-11 11:28:55 -04:00
parent e6305c0568
commit 525496e18c
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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)) {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@jambonz/node-client",
"version": "0.2.3",
"version": "0.2.4",
"description": "",
"main": "lib/index.js",
"scripts": {