Details
Description
trace method implementation is missing in logger.cpp which results in a linker error when directly using the method.
Implementation which needs to be added:
void Logger::trace(const std::string& msg, const log4cxx::spi::LocationInfo& location) {
if (isEnabledFor(log4cxx::Level::getTrace()))
}
#if LOG4CXX_HAS_WCHAR_T
void Logger::trace(const std::wstring& msg, const log4cxx::spi::LocationInfo& location) {
if (isEnabledFor(log4cxx::Level::getTrace()))
}
#endif
void Logger::trace(const std::string& msg) {
if (isEnabledFor(log4cxx::Level::getTrace()))
}
#if LOG4CXX_HAS_WCHAR_T
void Logger::trace(const std::wstring& msg) {
if (isEnabledFor(log4cxx::Level::getTrace()))
}
#endif