Details
Description
isTraceEnabled method implementation is missing in logger.cpp which results in a linker error when directly using the method. Also calling LOG4CXX_TRACE during runtime will result in an error.
Implementation which needs to be added:
bool Logger::isTraceEnabled() const
{
if(repository == 0 || repository->isDisabled(Level::TRACE_INT))
return Level::getTrace()->isGreaterOrEqual(getEffectiveLevel());
}