TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.25k stars 273 forks source link

Remove the identifier from logging #533

Open antiguru opened 10 months ago

antiguru commented 10 months ago

This changes the data received from logging from (Duration, Id, Data) to (Duration, Data), saving the space for Id. In most cases, the Id can be derived from the context where the log data is processed.

Signed-off-by: Moritz Hoffmann antiguru@gmail.com