mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
modules/console: Improve output formatting.
This commit is contained in:
parent
eaff4ccac5
commit
cfc199d89e
1 changed files with 10 additions and 9 deletions
|
@ -7251,7 +7251,15 @@ console_cmd__event(opt &out, const string_view &line)
|
||||||
const auto &[authed, failmsg](m::room::auth::check_static(event));
|
const auto &[authed, failmsg](m::room::auth::check_static(event));
|
||||||
if(!authed)
|
if(!authed)
|
||||||
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
||||||
<< "UNAUTHORIZED STATIC :" << what(failmsg)
|
<< "STATICALLY UNAUTHORIZED :" << what(failmsg)
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const auto &[authed, failmsg](m::room::auth::check_relative(event));
|
||||||
|
if(!authed)
|
||||||
|
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
||||||
|
<< "RELATIVELY UNAUTHORIZED :" << what(failmsg)
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7259,14 +7267,7 @@ console_cmd__event(opt &out, const string_view &line)
|
||||||
const auto &[authed, failmsg](m::room::auth::check_present(event));
|
const auto &[authed, failmsg](m::room::auth::check_present(event));
|
||||||
if(!authed)
|
if(!authed)
|
||||||
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
||||||
<< "PRESENTLY UNAUTHORIZED :" << what(failmsg)
|
<< "PRESENTLY UNAUTHORIZED :" << what(failmsg)
|
||||||
<< std::endl;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
const auto &[authed, failmsg](m::room::auth::check_relative(event));
|
|
||||||
if(!authed)
|
|
||||||
out << std::setw(9) << std::left << "!!! ERROR" << " "
|
|
||||||
<< "RELATIVELY UNAUTHORIZED :" << what(failmsg)
|
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue