Skip to content

Commit 411555d

Browse files
committed
Modified shprint logging
1 parent 1f2612b commit 411555d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pythonforandroid/logger.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ def shprint(command, *args, **kwargs):
138138
columns = get_console_width()
139139
command_path = str(command).split('/')
140140
command_string = command_path[-1]
141-
string = ' '.join(['running', command_string] + list(args))
141+
string = ' '.join(['{}->{} running'.format(Out_Fore.LIGHTBLACK_EX,
142+
Out_Style.RESET_ALL),
143+
command_string] + list(args))
142144

143145
# If logging is not in DEBUG mode, trim the command if necessary
144146
if logger.level > logging.DEBUG:

0 commit comments

Comments
 (0)