Luis Blanco
Luis Blanco
This is probably from debugging: https://github.com/LabSound/LabSound/blob/v1.2.0/src/core/AudioNode.cpp#L20 A similar log is currently in `main`: https://github.com/LabSound/LabSound/blob/main/src/core/AudioNode.cpp#L19 Also, why not use `LOG_TRACE` or some of those?
The default CMake flags set `/MD` which is for DLL. Static libs should be compiled with `/MT` to avoid errors like: > LabSound.lib(AudioParam.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary':...
The LabSound logger API is not contained in `lab::` - so it may conflict with whichever other logger having a `log_set_level` function, or some others. PS. I was able to...
Create some kind of a common log layer for ALL the modules that are in this project (basically, add logger to addon-tools-raub). - This logger should be used by all...