3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00

Add localtime also to early log messages

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-03-11 01:26:40 +01:00
parent 93752c6fce
commit c003a1b078

View file

@ -20,6 +20,7 @@
import os, sys, getopt, shutil, tempfile
##yosys-sys-path##
from sby_core import SbyJob
from time import localtime
sbyfile = None
workdir = None
@ -101,7 +102,8 @@ if len(args) > 1:
early_logmsgs = list()
def early_log(workdir, msg):
early_logmsgs.append("SBY [%s] %s" % (workdir, msg))
tm = localtime()
early_logmsgs.append("SBY %2d:%02d:%02d [%s] %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, workdir, msg))
print(early_logmsgs[-1])