Minidebug_runtime.Debug_runtime
When using the ppx_minidebug
syntax extension, provide a module called Debug_runtime
with this signature in scope of the instrumented code.
For PrintBox
runtimes, outputs the current logging stack to the logging channel. If the logging channel supports that, an output following a snapshot will rewind the channel to the state prior to the snapshot. Does nothing for the Flushing
runtimes.
Snapshots any pending logs and closes any open files. This should be called at the end of the program to ensure all logs are properly flushed and files are closed. Do not call this function if there is a chance that the backend will be used again.
For PrintBox
runtimes, when passed true within the scope of a log subtree, disables the logging of this subtree and its subtrees. Does not do anything when passed false (no_debug_if false
does not re-enable the log). Does nothing for the Flushing
runtimes.