center print level
This commit is contained in:
parent
cf5c96c28e
commit
869801d537
1 changed files with 2 additions and 2 deletions
|
@ -131,13 +131,13 @@ def print_level(level:int, module:str):
|
|||
"""
|
||||
from datetime import datetime
|
||||
|
||||
max_len_module = 10
|
||||
max_len_module = 14
|
||||
|
||||
date = datetime.now()
|
||||
out=""
|
||||
out+=date.strftime("%H:%M:%S")
|
||||
out+=" | "
|
||||
out+=module.upper().ljust(max_len_module)
|
||||
out+=module.upper().center(max_len_module)
|
||||
out+=" | "
|
||||
out+=">"*level
|
||||
out+=" "
|
||||
|
|
Loading…
Add table
Reference in a new issue