Download:
child 23:8d3fb2cb1608
parent 21:0a913a93173d
22:88e41d999e63
Anton Shestakov <engored@ya.ru>, Tue, 12 May 2015 15:01:26 +0800
bench: log time as a string (avoids exception when time is None)

1 файлов изменено, 1 вставок(+), 1 удалений(-) [+]
bench.py file | annotate | diff | comparison | revisions
--- a/bench.py Mon May 11 01:43:04 2015 +0800
+++ b/bench.py Tue May 12 15:01:26 2015 +0800
@@ -196,7 +196,7 @@
madelocal = True
time = test(mark, dropcache=not cache)
- logging.info('%05d/%05d %s %s %f', i, len(nodes), node, mark, time)
+ logging.info('%05d/%05d %s %s %s', i, len(nodes), node, mark, time)
if time is None:
continue