Log a value of some diagnostic Call this once for each diagnostic quantity, each iteration If called many times, last value will be used.
(key, val)
| 210 | |
| 211 | |
| 212 | def logkv(key, val): |
| 213 | """ |
| 214 | Log a value of some diagnostic |
| 215 | Call this once for each diagnostic quantity, each iteration |
| 216 | If called many times, last value will be used. |
| 217 | """ |
| 218 | get_current().logkv(key, val) |
| 219 | |
| 220 | |
| 221 | def logkv_mean(key, val): |
no test coverage detected