show task error details in logs (#802)

This commit is contained in:
bmc-msft
2021-04-13 17:34:15 -04:00
committed by GitHub
parent 470e95c833
commit c570f55088

View File

@ -16,7 +16,7 @@ pub async fn run(args: &clap::ArgMatches<'_>) -> Result<()> {
let result = config.run().await;
if let Err(err) = &result {
error!("error running task: {}", err);
error!("error running task: {:?}", err);
}
onefuzz_telemetry::try_flush_and_close();