Skip to content

BUG: Issues with io::Logger thread safety

  • records() method was not thread safe since it was returning a const reference to the vector of records. This has been replaced by getRecords() that returns a copy of the records
  • record(int i) was not thread safe since it returned a const reference to a record. It now returns a copy.

See issue #285 (closed)

Merge request reports