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 0b5a339 commit 400e379Copy full SHA for 400e379
jstest/common/console.py
@@ -32,21 +32,21 @@ def info(msg):
32
'''
33
Print debug message to the screen with green color.
34
35
- print('%s%s%s' % (TERMINAL_GREEN, msg, TERMINAL_EMPTY))
+ log(msg=msg, color=TERMINAL_GREEN)
36
37
38
def warning(msg):
39
40
Print debug message to the screen with yellow color.
41
42
- print('%s%s%s' % (TERMINAL_YELLOW, msg, TERMINAL_EMPTY))
+ log(msg=msg, color=TERMINAL_YELLOW)
43
44
45
def error(msg):
46
47
Print debug message to the screen with red color.
48
49
- print('%s%s%s' % (TERMINAL_RED, msg, TERMINAL_EMPTY))
+ log(msg=msg, color=TERMINAL_RED)
50
51
52
def fail(msg):
0 commit comments