作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以在log条板箱的宏中执行类似的操作?
enum ErrorKind {
KindA,
KindB,
KindC,
}
error!(ErrorKind::KindA, "Unable to do A.");
在自定义记录器的日志功能中:
fn log(&self, record: &Record) {
if self.enabled(record.metadata()) {
match record.custom_args.kind {
KindA => handle_kind_a(),
KindB => handle_kind_b(),
KindC => handle_kind_c(),
}
}
}
最佳答案
日志宏的行为与println!
非常相似,因为只要它们实现std::fmt::Display
,就可以用参数重载它们。您可以手动为fmt::Display
枚举实现ErrorKind
,以便基于enum变体编写自定义响应:
impl std::fmt::Display for ErrorKind {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
ErrorKind::KindA => write!(f, "ErrorKind is of type KindA"),
ErrorKind::KindB => write!(f, "ErrorKind is of type KindB"),
ErrorKind::KindC => write!(f, "ErrorKind is of type KindC"),
}
}
}
现在,您可以将日志宏与
ErrorKind
一起使用:
error!("Unable to do A: {}", ErrorKind::KindA);
// => Unable to do A: ErrorKind is of type KindA
error!("Unable to do A: {}", ErrorKind::KindB);
// => Unable to do A: ErrorKind is of type KindB
error!("Unable to do A: {}", ErrorKind::KindC);
// => Unable to do A: ErrorKind is of type KindC
关于logging - 如何在Rust中将自定义数据传递到日志箱的宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64599228/
我是一名优秀的程序员,十分优秀!