I keep getting a linker error

Specifically, it looks like you have an inline declaration in logging_helper.hpp but the definition is hidden in logging_helper.cpp, right? Functions marked inline must have a definition available to all callers of it, not hidden away in a separate TU.

1 Like