voxcpm / utils.py
zhendery
添加调试信息
81ecfab
raw
history blame
150 Bytes
import datetime
def print_with_time(*args):
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f"{timestamp}: ", *args)