mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Improve logfile/output flushing
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
93a5dd0641
commit
334b952e5a
|
@ -188,8 +188,7 @@ class SbyJob:
|
||||||
self.logfile = open("%s/logfile.txt" % workdir, "a")
|
self.logfile = open("%s/logfile.txt" % workdir, "a")
|
||||||
|
|
||||||
for line in early_logs:
|
for line in early_logs:
|
||||||
print(line, file=self.logfile)
|
print(line, file=self.logfile, flush=True)
|
||||||
self.logfile.flush()
|
|
||||||
|
|
||||||
if not reusedir:
|
if not reusedir:
|
||||||
with open("%s/config.sby" % workdir, "w") as f:
|
with open("%s/config.sby" % workdir, "w") as f:
|
||||||
|
@ -226,15 +225,13 @@ class SbyJob:
|
||||||
|
|
||||||
def log(self, logmessage):
|
def log(self, logmessage):
|
||||||
tm = localtime()
|
tm = localtime()
|
||||||
print("SBY %2d:%02d:%02d [%s] %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage))
|
print("SBY %2d:%02d:%02d [%s] %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), flush=True)
|
||||||
print("SBY %2d:%02d:%02d [%s] %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), file=self.logfile)
|
print("SBY %2d:%02d:%02d [%s] %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), file=self.logfile, flush=True)
|
||||||
self.logfile.flush()
|
|
||||||
|
|
||||||
def error(self, logmessage):
|
def error(self, logmessage):
|
||||||
tm = localtime()
|
tm = localtime()
|
||||||
print("SBY %2d:%02d:%02d [%s] ERROR: %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage))
|
print("SBY %2d:%02d:%02d [%s] ERROR: %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), flush=True)
|
||||||
print("SBY %2d:%02d:%02d [%s] ERROR: %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), file=self.logfile)
|
print("SBY %2d:%02d:%02d [%s] ERROR: %s" % (tm.tm_hour, tm.tm_min, tm.tm_sec, self.workdir, logmessage), file=self.logfile, flush=True)
|
||||||
self.logfile.flush()
|
|
||||||
self.status = "ERROR"
|
self.status = "ERROR"
|
||||||
if "ERROR" not in self.expect:
|
if "ERROR" not in self.expect:
|
||||||
self.retcode = 16
|
self.retcode = 16
|
||||||
|
|
Loading…
Reference in a new issue