Run first time with scalar, refactor value extraction

This commit is contained in:
Dominik Werder
2021-05-12 17:45:12 +02:00
parent 3df25e7a75
commit 34217967e9
14 changed files with 363 additions and 128 deletions

View File

@@ -48,7 +48,10 @@ fn fmt_backtrace(trace: &backtrace::Backtrace) -> String {
for sy in fr.symbols() {
let is_ours = match sy.filename() {
None => false,
Some(s) => s.to_str().unwrap().contains("dev/daqbuffer"),
Some(s) => {
let s = s.to_str().unwrap();
s.contains("dev/daqbuffer/") || s.contains("/retrsbld/")
}
};
let name = match sy.name() {
Some(k) => k.to_string(),