Custom path to save a panic report
还没有人认领这个 Issue。
评估
调研方向
首先阅读 Report::persist 以及 issue 中提到的 ::handle_dump 和 Metadata 入口点,以了解报告目录在哪里被选定。确定应如何配置基础目录,然后验证报告可以写入配置的位置,同时保留现有的默认行为。
由索引模型根据 Issue 内容生成。
描述
Currently Report::persist uses env::temp_dir() to get a base folder to save a panic report
/// Write a file to disk.
pub fn persist(&self) -> Result<PathBuf, Box<dyn Error + 'static>> {
let uuid = Uuid::new_v4().hyphenated().to_string();
let tmp_dir = env::temp_dir();
let file_name = format!("report-{}.toml", &uuid);
let file_path = Path::new(&tmp_dir).join(file_name);
let toml = self.serialize().expect("only using toml-compatible types");
std::fs::write(&file_path, toml.as_bytes())?;
Ok(file_path)
}
However on some platforms TMPDIR may not be defined or be RO (yes, weird but true) . Sure TMPDIR may be overwritten when starting application however it would be nice to configure a base dir either as a parameter to ::handle_dump (breaking change) of through Metadata object
- 主要语言
- Rust
- 星标
- 1.9k
- 派生
- 65
- 平均合并
- 2 小时 48 分钟
- 30 天内合并 PR
- 3
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
rust-cli/human-panic 的其他 Issue
-
breaking-change enhancement
难度 3/5 1-2 天 新手友好度 45/100
rust-cli/human-panic#194 ·
-
难度 3/5 1-2 天 新手友好度 25/100
rust-cli/human-panic#106 ·
-
难度 3/5 1-2 天 新手友好度 42/100
rust-cli/human-panic#101 ·
-
难度 4/5 3-5 天 新手友好度 35/100
rust-cli/human-panic#54 · 11 条评论 · 19 个 reaction ·
-
enhancement
难度 5/5 一周以上 新手友好度 15/100
rust-cli/human-panic#46 · 8 条评论 ·
查看 rust-cli/human-panic 的全部 Issue
相似的 Issue
-
bug github_actions
难度 2/5 1-3 小时 新手友好度 75/100
registrystack/registry-stack#1393 ·
-
难度 2/5 1-3 小时 新手友好度 75/100
longbridge/gpui-kit#3223 ·
-
bug engine
难度 2/5 1-3 小时 新手友好度 65/100
rocky-data/rocky#2181 ·
-
难度 2/5 1-3 小时 新手友好度 70/100
oasisprotocol/oasis-sdk#2523 ·
-
bot:ai-assisted component:indexer QA-roadmap status:untriaged
难度 2/5 1-3 小时 新手友好度 75/100
midnightntwrk/midnight-indexer#1557 ·