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 is very likely to change.
The following code ```rust use bugreport::{bugreport, collectors::*};
fn main() { bugreport!() .info(SoftwareVersion::default()) .info(OperatingSystem::default()) .info(CommandLine::default()) .info(EnvironmentVariables::list(&["SHELL", "EDITOR"])) .info(CommandOutput::new("Python version", "python", &["--version"])) .info(CompileTimeInformation::default()) .print_markdown(); } ``` generates bug report information that looks like this.
SHELL
, PATH
, …)bash --version
)--diagnostic
command-line option or environment variable (like --diagnostic
)git bugreport
)/home/username
from paths)ffmpeg
s -report
option
git bugreport
grails bugreport