Warnings provider to access warnings text products

This commit is contained in:
Dan Paulat 2022-11-06 23:37:41 -06:00
parent d5d9285736
commit a2616b0ee0
7 changed files with 301 additions and 6 deletions

View file

@ -67,7 +67,7 @@ bool TextProductFile::LoadFile(const std::string& filename)
bool TextProductFile::LoadData(std::istream& is)
{
logger_->debug("Loading Data");
logger_->trace("Loading Data");
while (!is.eof())
{

View file

@ -53,7 +53,7 @@ public:
WmoHeader::WmoHeader() : p(std::make_unique<WmoHeaderImpl>()) {}
WmoHeader::~WmoHeader() = default;
WmoHeader::WmoHeader(WmoHeader&&) noexcept = default;
WmoHeader::WmoHeader(WmoHeader&&) noexcept = default;
WmoHeader& WmoHeader::operator=(WmoHeader&&) noexcept = default;
bool WmoHeader::operator==(const WmoHeader& o) const
@ -139,7 +139,7 @@ bool WmoHeader::Parse(std::istream& is)
if (is.eof())
{
logger_->debug("Reached end of file");
logger_->trace("Reached end of file");
headerValid = false;
}
else