@@ -18,7 +18,9 @@ def debug_log(tags, args, is_work=True, show_level=logging.INFO):
lines += f"\n- {count + 1} - {line}"
LOG.info(lines)
elif type(args) == str:
- LOG.info(f"{tags} | {args}")
+ now_string = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
+ LOG.info(f"{now_string} | {tags} | {args}")
+ # LOG.info(f"{tags} | {args}")
def trace_log():