Skip to content

Commit 291f478

Browse files
committed
chore: add logs when kill tns and adb
1 parent a238efb commit 291f478

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

core/utils/device/adb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def __get_ids(include_emulator=False):
4444

4545
@staticmethod
4646
def restart():
47+
Log.info("Restart adb.")
4748
Adb.__run_adb_command('kill-server')
4849
Process.kill(proc_name='adb')
4950
Adb.__run_adb_command('start-server')

products/nativescript/tns.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ def kill():
325325
"""
326326
Kill all tns related processes.
327327
"""
328+
Log.info("Kill tns processes.")
328329
if Settings.HOST_OS == OSType.WINDOWS:
329330
Process.kill(proc_name='node')
330331
else:

0 commit comments

Comments
 (0)