mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-04 14:37:25 +00:00
Merge pull request #4413 from jodh-intel/tools-full-err-output
tools: Enable extra detail on error
This commit is contained in:
commit
05022975c8
@ -320,7 +320,7 @@ fn real_main() -> Result<()> {
|
||||
|
||||
fn main() {
|
||||
if let Err(e) = real_main() {
|
||||
eprintln!("ERROR: {}", e);
|
||||
eprintln!("ERROR: {:#?}", e);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
@ -282,7 +282,7 @@ fn real_main() -> Result<()> {
|
||||
|
||||
fn main() {
|
||||
if let Err(e) = real_main() {
|
||||
eprintln!("ERROR: {}", e);
|
||||
eprintln!("ERROR: {:#?}", e);
|
||||
exit(1);
|
||||
}
|
||||
exit(0);
|
||||
|
Loading…
Reference in New Issue
Block a user