From 5f03d30df4d4596d981a79c117cc58cf83a5b16c Mon Sep 17 00:00:00 2001 From: gavin Date: Wed, 8 Apr 2020 18:54:45 +0530 Subject: [PATCH] chore: changed LOG to INFO --- bench/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/utils.py b/bench/utils.py index 6fb985fc..e783a5af 100755 --- a/bench/utils.py +++ b/bench/utils.py @@ -61,7 +61,7 @@ def is_bench_directory(directory=os.path.curdir): def log(message, level=0): levels = { - 0: color.blue + 'LOG', # normal + 0: color.blue + 'INFO', # normal 1: color.green + 'SUCCESS', # success 2: color.red + 'ERROR', # fail 3: color.yellow + 'WARN' # warn/suggest