More helpful plugin load error logging; Publish v0.2.11

This commit is contained in:
Nick Farina
2015-11-05 10:48:32 -08:00
parent b3dbe1165c
commit e3a5c5a96a
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ Server.prototype._loadPlugins = function(accessories, platforms) {
catch (err) {
log.error("====================")
log.error("ERROR LOADING PLUGIN " + plugin.name() + ":")
log.error(err);
log.error(err.stack);
log.error("====================")
plugin.loadError = err;
}

View File

@@ -1,7 +1,7 @@
{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "0.2.10",
"version": "0.2.11",
"scripts": {
"dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true"
},