mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-18 04:38:09 +00:00
show the full error on proxy loop failure (#702)
This commit is contained in:
@ -44,7 +44,7 @@ async fn run_loop(mut proxy_config: Config) -> Result<()> {
|
|||||||
async fn run(proxy_config: Config) -> Result<()> {
|
async fn run(proxy_config: Config) -> Result<()> {
|
||||||
let result = run_loop(proxy_config).await;
|
let result = run_loop(proxy_config).await;
|
||||||
if let Err(err) = &result {
|
if let Err(err) = &result {
|
||||||
error!("run loop failed: {}", err);
|
error!("run loop failed: {:?}", err);
|
||||||
}
|
}
|
||||||
onefuzz_telemetry::try_flush_and_close();
|
onefuzz_telemetry::try_flush_and_close();
|
||||||
result
|
result
|
||||||
|
Reference in New Issue
Block a user