Time display identical to others in console.

This commit is contained in:
resonantsky
2026-09-10 16:07:14 +02:00
parent ba01d4fbf4
commit f7bd883140
+1 -1
View File
@@ -147,7 +147,7 @@ class MIOpenLogCapture:
os.close(self.read_fd)
self.algorithms = [match.group(1) for line in self.lines if (match := _ALGORITHM_PATTERN.search(line))]
algorithm = self.algorithms[-1] if self.algorithms else "not emitted"
log.info(f'MIOpen: operation={self.operation} algorithm={algorithm} time="{self.elapsed_ms:.3f}ms"')
log.info(f'MIOpen: operation={self.operation} algorithm={algorithm} time={self.elapsed_ms:.3f}ms')
return False