mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-13 12:35:41 +02:00
Switched to a custom logging lib instead of that spdlog junk
This commit is contained in:
@ -69,7 +69,7 @@ namespace dsp::buffer {
|
||||
writeCur = ((writeCur) % TEST_BUFFER_SIZE);
|
||||
|
||||
// if (((writeCur - readCur + TEST_BUFFER_SIZE) % TEST_BUFFER_SIZE) >= (TEST_BUFFER_SIZE-2)) {
|
||||
// spdlog::warn("Overflow");
|
||||
// flog::warn("Overflow");
|
||||
// }
|
||||
}
|
||||
cnd.notify_all();
|
||||
|
@ -83,7 +83,7 @@ namespace dsp::multirate {
|
||||
int interp = OutSR / gcd;
|
||||
int decim = InSR / gcd;
|
||||
|
||||
spdlog::warn("interp: {0}, decim: {1}", interp, decim);
|
||||
flog::warn("interp: {0}, decim: {1}", interp, decim);
|
||||
|
||||
// Configure resampler
|
||||
double tapSamplerate = _symbolrate * (double)interp;
|
||||
|
Reference in New Issue
Block a user