devicestack
Advanced tools
Comparing version 1.10.5 to 1.10.6
@@ -282,2 +282,3 @@ var EventEmitter2 = require('eventemitter2').EventEmitter2, | ||
self.dequeueCommand(command); | ||
console.log(e.stack); | ||
throw e; | ||
@@ -300,2 +301,3 @@ } | ||
self.dequeueCommand(command); | ||
console.log(err.stack); | ||
throw err; | ||
@@ -325,2 +327,3 @@ } | ||
this.dequeueCommand(command); | ||
console.log(err.stack); | ||
throw err; | ||
@@ -338,3 +341,5 @@ } | ||
Connection.prototype.sendCommand = function(command, callback) { | ||
throw new Error('Implement the sendCommand function!'); | ||
var err = new Error('Implement the sendCommand function!'); | ||
console.log(err.stack); | ||
throw err; | ||
// this.frameHandler.send(command.data); | ||
@@ -429,2 +434,3 @@ }; | ||
if (self.log) self.log(e.name + ' while calling callback of task: ' + task.constructor.name + '!' + addon); | ||
console.log(e.stack); | ||
throw e; | ||
@@ -458,2 +464,3 @@ } | ||
this.dequeueTask(task); | ||
console.log(err.stack); | ||
throw err; | ||
@@ -460,0 +467,0 @@ } |
{ | ||
"name": "devicestack", | ||
"version": "1.10.5", | ||
"version": "1.10.6", | ||
"description": "This module helps you to represent a device and its protocol.", | ||
@@ -5,0 +5,0 @@ "private": false, |
@@ -934,2 +934,2 @@ <pre> | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
THE SOFTWARE. |
@@ -0,1 +1,4 @@ | ||
#### v1.10.6 | ||
- connection: try to console log if error is throwing | ||
#### v1.10.5 | ||
@@ -2,0 +5,0 @@ - use fix dependency versions |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
126904
2650
934