pull/2232/head
dr7ana 4 months ago
parent 0fe8c6f0a6
commit 27f09f0b50

@ -794,7 +794,7 @@ namespace llarp
}
catch (const std::exception& e)
{
log::info(link_cat, "Exception handling RC Fetch request: {}", e.what());
log::critical(link_cat, "Exception handling RC Fetch request (body:{}): {}", m.body(), e.what());
m.respond(messages::ERROR_RESPONSE, true);
return;
}

@ -691,10 +691,11 @@ namespace llarp
{
log::warning(
logcat,
"BootstrapRC fetch request to {} failed (error {}/{})",
"BootstrapRC fetch request to {} failed (error {}/{}): {}",
src,
bootstrap_attempts,
MAX_BOOTSTRAP_FETCH_ATTEMPTS);
MAX_BOOTSTRAP_FETCH_ATTEMPTS,
m.body());
// fallback_to_bootstrap();
return;
}

Loading…
Cancel
Save