From 9d705908eb6d5939e9dbef6fdfeab07525fe55ca Mon Sep 17 00:00:00 2001 From: Lei PAN Date: Mon, 5 Jun 2023 17:41:36 +0200 Subject: [PATCH] print serial number --- src/workers/CommandorPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workers/CommandorPage.js b/src/workers/CommandorPage.js index b156612..99bdc68 100644 --- a/src/workers/CommandorPage.js +++ b/src/workers/CommandorPage.js @@ -137,7 +137,7 @@ class CommandorPage { this.device.shell("am start -n com.android.chrome/com.google.android.apps.chrome.Main") await delay(5 * 1000); // Connect to the device. - logWithDevice("loadPage() called, with port:" + this.port, this.device); + logWithDevice(this.device.serial() + ":loadPage() called, with port:" + this.port, this.device); if (this.browser) { logWithDevice("browser.isConnected is " + this.browser.isConnected(), this.device); }