mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-28 05:17:50 +02:00
Switched to a custom logging lib instead of that spdlog junk
This commit is contained in:
@ -81,7 +81,7 @@ public:
|
||||
client = net::rigctl::connect(host, port);
|
||||
}
|
||||
catch (std::exception e) {
|
||||
spdlog::error("Could not connect: {0}", e.what());
|
||||
flog::error("Could not connect: {0}", e.what());
|
||||
return;
|
||||
}
|
||||
|
||||
@ -163,7 +163,7 @@ private:
|
||||
RigctlClientModule* _this = (RigctlClientModule*)ctx;
|
||||
if (!_this->client || !_this->client->isOpen()) { return; }
|
||||
if (_this->client->setFreq(freq)) {
|
||||
spdlog::error("Could not set frequency");
|
||||
flog::error("Could not set frequency");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user