rename Report virtuals to warnMsg etc

This reverts commit 2ed1c2c06b.

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-03-20 10:14:57 -07:00
parent 2ed1c2c06b
commit d90bf7d93b
2 changed files with 32 additions and 33 deletions

View File

@ -61,9 +61,9 @@ public:
void report(std::string_view fmt, void report(std::string_view fmt,
Args &&...args) Args &&...args)
{ {
report(sta::vformat(fmt, sta::make_format_args(args...))); reportMsg(sta::vformat(fmt, sta::make_format_args(args...)));
} }
virtual void report(const std::string &formatted_msg) virtual void reportMsg(const std::string &formatted_msg)
{ {
reportLine(formatted_msg); reportLine(formatted_msg);
} }
@ -76,11 +76,10 @@ public:
std::string_view fmt, std::string_view fmt,
Args &&...args) Args &&...args)
{ {
if (!isSuppressed(id)) { if (!isSuppressed(id))
warn(id, sta::vformat(fmt, sta::make_format_args(args...))); warnMsg(id, sta::vformat(fmt, sta::make_format_args(args...)));
} }
} virtual void warnMsg(int id,
virtual void warn(int id,
const std::string &formatted_msg) { const std::string &formatted_msg) {
reportLine(sta::format("Warning {}: {}", id, formatted_msg)); reportLine(sta::format("Warning {}: {}", id, formatted_msg));
} }
@ -94,12 +93,12 @@ public:
Args &&...args) Args &&...args)
{ {
if (!isSuppressed(id)) { if (!isSuppressed(id)) {
fileWarn(id, filename, line, fileWarnMsg(id, filename, line,
sta::vformat(fmt, sta::make_format_args(args...))); sta::vformat(fmt, sta::make_format_args(args...)));
} }
} }
virtual void virtual void
fileWarn(int id, fileWarnMsg(int id,
std::string_view filename, std::string_view filename,
int line, int line,
const std::string &formatted_msg) { const std::string &formatted_msg) {
@ -112,9 +111,9 @@ public:
std::string_view fmt, std::string_view fmt,
Args &&...args) Args &&...args)
{ {
error(id, sta::vformat(fmt, sta::make_format_args(args...))); errorMsg(id, sta::vformat(fmt, sta::make_format_args(args...)));
} }
virtual void error(int id, virtual void errorMsg(int id,
const std::string &formatted_msg) const std::string &formatted_msg)
{ {
reportThrowExceptionMsg(sta::format("{} {}", id, formatted_msg), isSuppressed(id)); reportThrowExceptionMsg(sta::format("{} {}", id, formatted_msg), isSuppressed(id));
@ -127,10 +126,10 @@ public:
std::string_view fmt, std::string_view fmt,
Args &&...args) Args &&...args)
{ {
fileError(id, filename, line, fileErrorMsg(id, filename, line,
sta::vformat(fmt, sta::make_format_args(args...))); sta::vformat(fmt, sta::make_format_args(args...)));
} }
virtual void fileError(int id, virtual void fileErrorMsg(int id,
std::string_view filename, std::string_view filename,
int line, int line,
const std::string &formatted_msg) const std::string &formatted_msg)
@ -148,9 +147,9 @@ public:
std::string_view fmt, std::string_view fmt,
Args &&...args) Args &&...args)
{ {
critical(id, sta::vformat(fmt, sta::make_format_args(args...))); criticalMsg(id, sta::vformat(fmt, sta::make_format_args(args...)));
} }
virtual void critical(int id, virtual void criticalMsg(int id,
const std::string &formatted_msg) const std::string &formatted_msg)
{ {
reportLine(sta::format("Critical {}: {}", id, formatted_msg)); reportLine(sta::format("Critical {}: {}", id, formatted_msg));
@ -164,10 +163,10 @@ public:
std::string_view fmt, std::string_view fmt,
Args &&...args) Args &&...args)
{ {
fileCritical(id, filename, line, fileCriticalMsg(id, filename, line,
sta::vformat(fmt, sta::make_format_args(args...))); sta::vformat(fmt, sta::make_format_args(args...)));
} }
virtual void fileCritical(int id, virtual void fileCriticalMsg(int id,
std::string_view filename, std::string_view filename,
int line, int line,
const std::string &formatted_msg) const std::string &formatted_msg)

View File

@ -1057,14 +1057,14 @@ ReportPath::pathEndpoint(const PathEnd *end) const
void void
ReportPath::reportJsonHeader() const ReportPath::reportJsonHeader() const
{ {
report_->report("{\"checks\": ["); report_->report("{{\"checks\": [");
} }
void void
ReportPath::reportJsonFooter() const ReportPath::reportJsonFooter() const
{ {
report_->report("]"); report_->report("]");
report_->report("}"); report_->report("}}");
} }
void void