fix buffer handling so that the group-tracking bot example passes

This commit is contained in:
holger krekel
2020-03-25 06:34:37 +01:00
parent d4ba09c753
commit 57f879a6ba
5 changed files with 98 additions and 23 deletions

View File

@@ -71,7 +71,7 @@ class FFIEventLogger:
locname += "-" + self.logid
s = "{:2.2f} [{}] {}".format(elapsed, locname, message)
with self._loglock:
print(s)
print(s, flush=True)
class FFIEventTracker: