From cc91d7c75208bc6a1c363dc395d358802a785bcc Mon Sep 17 00:00:00 2001 From: David Kebler Date: Tue, 24 Mar 2020 14:30:01 -0700 Subject: [PATCH] clear out console.log --- src/device.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/device.js b/src/device.js index f287fcd..bed9670 100644 --- a/src/device.js +++ b/src/device.js @@ -20,8 +20,6 @@ class I2CDevice extends Base { opts.i2cbus = opts.i2cbus || { name:opts.name||'i2c-bus', type:'c', transport:'n', options:{name:opts.name ||'i2c-device', path:opts.path||'i2c-bus'}} if ((opts.i2cbus.options || {}).host) opts.i2cbus.options.port = opts.i2cbus.options.port || 1776 else opts.i2cbus.options.path = opts.i2cbus.options.path || 'i2c-bus' - // console.log('+++++++++++++++++++++++BUS OPTIONS FOR CONSUMER SOCKET+++++++++++++++++') - // console.dir(opts.i2cbus) super(opts) this.registerSocket(opts.i2cbus) this.address = +opts.address // make sure any passed number is number not a string