mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:10:04 +00:00
Boost.Log -> spdlog - wsr88d/rda
This commit is contained in:
parent
44bcc7dd4c
commit
dda71133e0
10 changed files with 105 additions and 128 deletions
|
|
@ -1,9 +1,8 @@
|
|||
#include <scwx/wsr88d/rda/performance_maintenance_data.hpp>
|
||||
#include <scwx/util/logger.hpp>
|
||||
|
||||
#include <array>
|
||||
|
||||
#include <boost/log/trivial.hpp>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
|
|
@ -12,7 +11,8 @@ namespace rda
|
|||
{
|
||||
|
||||
static const std::string logPrefix_ =
|
||||
"[scwx::wsr88d::rda::performance_maintenance_data] ";
|
||||
"scwx::wsr88d::rda::performance_maintenance_data";
|
||||
static const auto logger_ = util::Logger::Create(logPrefix_);
|
||||
|
||||
class PerformanceMaintenanceDataImpl
|
||||
{
|
||||
|
|
@ -1823,8 +1823,7 @@ uint16_t PerformanceMaintenanceData::version() const
|
|||
|
||||
bool PerformanceMaintenanceData::Parse(std::istream& is)
|
||||
{
|
||||
BOOST_LOG_TRIVIAL(trace)
|
||||
<< logPrefix_ << "Parsing Performance/Maintenance Data (Message Type 3)";
|
||||
logger_->trace("Parsing Performance/Maintenance Data (Message Type 3)");
|
||||
|
||||
bool messageValid = true;
|
||||
size_t bytesRead = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue