bugreport
is a Rust library that helps application developers to automatically collect
information about the system and the environment that users can send along with a bug
report (similar to git bugreport
or ffmpeg … -report
).
Note: This library is in an early stage and the API may change in the future.
The following code ```rust use bugreport::{bugreport, collector::*, format::Markdown};
fn main() {
bugreport!()
.info(SoftwareVersion::default())
.info(OperatingSystem::default())
.info(CommandLine::default())
.info(EnvironmentVariables::list(&["SHELL", "EDITOR"]))
.info(CommandOutput::new("Python version", "python", &["-V"]))
.info(CompileTimeInformation::default())
.print::
SHELL
, PATH
, …)bash --version
)git bugreport
)/home/username
from paths)ffmpeg
s -report
option
git bugreport
grails bugreport
Other crates that might be useful:
human-panic
- Make panic messages nice for humans to read.