0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 05:58:56 +02:00

ircd:Ⓜ️:fetch: Reduce error log level/verbosity for fetch start failures.

This commit is contained in:
Jason Volk 2020-03-09 09:29:17 -07:00
parent 0958bdf286
commit 08d9c95401

View file

@ -524,10 +524,9 @@ catch(const m::UNAVAILABLE &e)
}
catch(const http::error &e)
{
log::logf
log::derror
{
log, run::level == run::level::QUIT? log::DERROR: log::ERROR,
"Starting %s request for %s in %s to '%s' :%s %s",
log, "Starting %s request for %s in %s to '%s' :%s %s",
reflect(request.opts.op),
string_view{request.opts.event_id},
string_view{request.opts.room_id},
@ -538,12 +537,25 @@ catch(const http::error &e)
return false;
}
catch(const server::error &e)
{
log::derror
{
log, "Starting %s request for %s in %s to '%s' :%s",
reflect(request.opts.op),
string_view{request.opts.event_id},
string_view{request.opts.room_id},
string_view{request.origin},
e.what(),
};
return false;
}
catch(const std::exception &e)
{
log::logf
log::error
{
log, run::level == run::level::QUIT? log::DERROR: log::ERROR,
"Starting %s request for %s in %s to '%s' :%s",
log, "Starting %s request for %s in %s to '%s' :%s",
reflect(request.opts.op),
string_view{request.opts.event_id},
string_view{request.opts.room_id},