mirror of
https://github.com/appium/appium.git
synced 2026-02-12 04:50:08 -06:00
Handle non-String input to errorStreamHandler
This commit is contained in:
@@ -205,8 +205,8 @@ UiAutomator.prototype.handleBootstrapOutput = function (output) {
|
||||
};
|
||||
|
||||
UiAutomator.prototype.errorStreamHandler = function (output) {
|
||||
var lines = output.split("\n");
|
||||
_.each(lines, function (line) {
|
||||
var lines = output.toString().split("\n");
|
||||
_.each(lines, function(line) {
|
||||
logger.info(("[UIAUTOMATOR STDERR] " + line).yellow);
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user