Update run devtools message

(cherry picked from commit 626568c614dd9b7ce6fa6ad4cd1b75d7ce23108c)
diff --git a/bin/templates/project/cordova/lib/run.js b/bin/templates/project/cordova/lib/run.js
index f1335f9..ba622a7 100644
--- a/bin/templates/project/cordova/lib/run.js
+++ b/bin/templates/project/cordova/lib/run.js
@@ -112,9 +112,7 @@
     var cmd = './cordova-ubuntu www/';
     if (debug) {
         cmd = "DEBUG=1 " + cmd;
-        logger.warn('Debug enabled. \
-Try pointing a Chrome/Chromium browser \
-to http://' + getDeviceInetAddress() + ':9222');
+        logger.warn('Debug enabled. Devtools debug URL: http://' + getDeviceInetAddress(target) + ':9222');
     }
 
     logger.info('Launching the application.');
@@ -157,9 +155,7 @@
     Devices.adbExec(target, 'shell "cd /home/phablet/; pkcon install-local ' + names[0] + ' -p --allow-untrusted -y"', {silent: false});
 
     if (debug) {
-        logger.warn('Debug enabled. \
-Try pointing a Chrome/Chromium browser \
-to http://' + getDeviceInetAddress(target) + ':9222');
+        logger.warn('Debug enabled. Devtools debug URL: http://' + getDeviceInetAddress(target) + ':9222');
         Devices.adbExec(target, 'forward tcp:9222 tcp:9222');
     }