6 个版本
使用旧的 Rust 2015
0.2.1 | 2018年1月8日 |
---|---|
0.2.0 | 2017年11月18日 |
0.1.3 | 2017年3月30日 |
#32 在 #reporting
106 每月下载量
在 3 个crate中使用 (2 个直接使用)
36KB
933 代码行 (不含注释)
bugsnag-rs
Rust 中的 Bugsnag API。
示例
use bugsnag;
let mut api = bugsnag::Bugsnag::new("api-key", env!("CARGO_MANIFEST_DIR"));
// setting the appinfo is not required, but recommended
api.set_app_info(Some(env!("CARGO_PKG_VERSION")),
Some("development"),
Some("rust"));
api.notify("Info", "This is a message from the rust bugsnag api.")
.severity(bugsnag::Severity::Info);
或者在 panic 处理器中可以执行以下操作
use bugsnag;
let mut api = bugsnag::Bugsnag::new("api-key", env!("CARGO_MANIFEST_DIR"));
bugsnag::panic::handle(&api, panic_info, None);
有关如何将 bugsnag 集成到项目的更多示例,示例文件夹提供了一些参考实现。
缺少哪些 json 字段?
- metaData
- user
json 结构的详细信息可以在这里找到。
依赖项
~7–9.5MB
~211K SLoC