#include #include using namespace std; using namespace log4cplus::helpers; void printMsgs() { cout << "Entering printMsgs()..." << endl; LogLog::getLogLog()->debug("This is a Debug statement..."); LogLog::getLogLog()->warn("This is a Warning..."); LogLog::getLogLog()->error("This is a Error..."); cout << "Exiting printMsgs()..." << endl << endl; } int main() { printMsgs(); cout << "Turning on debug..." << endl; LogLog::getLogLog()->setInternalDebugging(true); printMsgs(); cout << "Turning on quiet mode..." << endl; LogLog::getLogLog()->setQuietMode(true); printMsgs(); return 0; }