corrected float ms again again

This commit is contained in:
resonantsky
2026-09-10 19:04:57 +02:00
parent ecd39a672d
commit db5d427b00
+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}')
return False