We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a238efb commit 291f478Copy full SHA for 291f478
core/utils/device/adb.py
@@ -44,6 +44,7 @@ def __get_ids(include_emulator=False):
44
45
@staticmethod
46
def restart():
47
+ Log.info("Restart adb.")
48
Adb.__run_adb_command('kill-server')
49
Process.kill(proc_name='adb')
50
Adb.__run_adb_command('start-server')
products/nativescript/tns.py
@@ -325,6 +325,7 @@ def kill():
325
"""
326
Kill all tns related processes.
327
328
+ Log.info("Kill tns processes.")
329
if Settings.HOST_OS == OSType.WINDOWS:
330
Process.kill(proc_name='node')
331
else:
0 commit comments