Bump version
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "daqbuffer"
|
||||
version = "0.5.5-aa.7"
|
||||
version = "0.5.5-aa.8"
|
||||
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
||||
@@ -258,14 +258,16 @@ where
|
||||
match h {
|
||||
Ok(k) => k,
|
||||
Err(e) => {
|
||||
error!("Cont<F> catch_unwind {e:?}");
|
||||
match e.downcast_ref::<Error>() {
|
||||
Some(e) => {
|
||||
error!("Cont<F> catch_unwind is Error: {e:?}");
|
||||
}
|
||||
None => {}
|
||||
if let Some(v) = e.downcast_ref::<Error>() {
|
||||
error!("Cont<F> catch_unwind is Error: {}", v);
|
||||
} else if let Some(v) = e.downcast_ref::<String>() {
|
||||
error!("Cont<F> catch_unwind is String: {}", v);
|
||||
} else if let Some(v) = e.downcast_ref::<&str>() {
|
||||
error!("Cont<F> catch_unwind is &str: {}", v);
|
||||
} else {
|
||||
error!("Cont<F> catch_unwind {:?}", e);
|
||||
}
|
||||
Poll::Ready(Err(Error::with_msg_no_trace(format!("{e:?}"))))
|
||||
Poll::Ready(Err(Error::with_msg_no_trace(format!("{:?}", e))))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,8 +215,8 @@ fn tracing_init_inner(mode: TracingMode) -> Result<(), Error> {
|
||||
sr = g.parent();
|
||||
}
|
||||
}
|
||||
allow = true;
|
||||
allow
|
||||
// true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
@@ -251,8 +251,8 @@ fn tracing_init_inner(mode: TracingMode) -> Result<(), Error> {
|
||||
sr = g.parent();
|
||||
}
|
||||
}
|
||||
allow = true;
|
||||
allow
|
||||
// true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user