Logcat works now, but still kind of wondering how the messages should arrive.

This commit is contained in:
Simo Kinnunen
2014-04-17 18:27:35 +09:00
parent 40b493649b
commit 8da5b61289
7 changed files with 240 additions and 107 deletions

View File

@@ -187,6 +187,16 @@ module.exports = function ControlServiceFactory(
devicePort: forward.devicePort
})
}
this.startLogcat = function(filters) {
return sendTwoWay('logcat.start', {
filters: filters
})
}
this.stopLogcat = function() {
return sendTwoWay('logcat.stop')
}
}
controlService.create = function(target, channel) {