The build process fails during the linking stage due to a symbol collision. The global variable Logger log is defined in both Secure.cpp and Depencies.cpp without internal linkage or namespacing.
Error
/usr/bin/ld: build/obj/module/Secure.o: multiple definition of `log';
build/obj/module/Depencies.o: first defined here
Update
Encapsulate global loggers within their respective namespaces.
Apply the static keyword for internal linkage within translation units.
The build process fails during the linking stage due to a symbol collision. The global variable Logger log is defined in both Secure.cpp and Depencies.cpp without internal linkage or namespacing.
Error
Update