mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 17:36:29 +03:00
repl: print errors with causes
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
- "full message view" not needed because of footers that go to contact status #4151
|
- "full message view" not needed because of footers that go to contact status #4151
|
||||||
- Pick up system's light/dark mode in generated message HTML #4150
|
- Pick up system's light/dark mode in generated message HTML #4150
|
||||||
- Support non-persistent configuration with DELTACHAT_* env
|
- Support non-persistent configuration with DELTACHAT_* env
|
||||||
|
- Print deltachat-repl errors with causes. #4166
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
- Fix segmentation fault if `dc_context_unref()` is called during
|
- Fix segmentation fault if `dc_context_unref()` is called during
|
||||||
|
|||||||
@@ -359,7 +359,7 @@ async fn start(args: Vec<String>) -> Result<(), Error> {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("Error: {err}");
|
println!("Error: {err:#}");
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -374,7 +374,7 @@ async fn start(args: Vec<String>) -> Result<(), Error> {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("Error: {err}");
|
println!("Error: {err:#}");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user