MCPcopy Create free account
hub / github.com/CodSpeedHQ/codspeed / DeferredLog

Class DeferredLog

src/local_logger/mod.rs:42–46  ·  view source on GitHub ↗

A snapshot of a log record that can be stored across the rolling-buffer lifetime (the original `log::Record` borrows data and cannot be kept).

Source from the content-addressed store, hash-verified

40/// A snapshot of a log record that can be stored across the rolling-buffer
41/// lifetime (the original `log::Record` borrows data and cannot be kept).
42struct DeferredLog {
43 level: log::Level,
44 message: String,
45 target: String,
46}
47
48/// Hide the progress bar temporarily, execute `f`, then redraw the progress bar.
49///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected