author | wenzelm |
Fri, 07 Aug 2020 22:23:40 +0200 | |
changeset 72117 | 4d8b3209dae3 |
parent 72116 | 7773ec172572 |
child 72118 | 84f716e72fa3 |
--- a/src/Pure/ML/ml_statistics.scala Fri Aug 07 22:19:32 2020 +0200 +++ b/src/Pure/ML/ml_statistics.scala Fri Aug 07 22:23:40 2020 +0200 @@ -71,7 +71,8 @@ private def consume(props: Properties.T): Unit = synchronized { if (session != null && session.session_options.bool("ML_statistics")) { - session.runtime_statistics.post(Session.Runtime_Statistics(props)) + val stats = Session.Runtime_Statistics(session.xml_cache.props(props)) + session.runtime_statistics.post(stats) } }