mirror of
https://github.com/appium/appium.git
synced 2026-02-11 04:20:00 -06:00
even more logging
This commit is contained in:
@@ -180,6 +180,7 @@ ADB.prototype.insertManifest = function(manifest, srcApk, dstApk, cb) {
|
||||
// Extract compiled manifest from manifest.xml.apk
|
||||
unzipFile(manifest + '.apk', function(err, stderr) {
|
||||
if (err) {
|
||||
logger.info("Error unzipping manifest apk, here's stderr:");
|
||||
logger.debug(stderr);
|
||||
return cb(err);
|
||||
}
|
||||
@@ -205,6 +206,7 @@ ADB.prototype.insertManifest = function(manifest, srcApk, dstApk, cb) {
|
||||
logger.debug("Moving manifest with: " + replaceCmd);
|
||||
exec(replaceCmd, {}, function(err) {
|
||||
if (err) {
|
||||
logger.info("Got error moving manifest: " + err);
|
||||
return cb(err);
|
||||
}
|
||||
logger.debug("Inserted manifest.");
|
||||
|
||||
Reference in New Issue
Block a user