Changeset 5316 for source/ariba/utility/system
- Timestamp:
- Jul 24, 2009, 8:53:41 PM (15 years ago)
- Location:
- source/ariba/utility/system
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/StartupWrapper.cpp
r5289 r5316 98 98 { 99 99 log4cxx::LoggerPtr logger(log4cxx::Logger::getRootLogger()); 100 logger->setLevel(log4cxx::Level::get Error());100 logger->setLevel(log4cxx::Level::getWarn()); 101 101 } 102 102 … … 107 107 } 108 108 { 109 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BaseCommunication"));110 logger->setLevel(log4cxx::Level::getError());109 // log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BaseCommunication")); 110 // logger->setLevel(log4cxx::Level::getError()); 111 111 } 112 112 113 113 //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 114 // DON'T SVN COMMIT YOUR CHAN TED LOGGING! THE ABOVE CODE MUST REMAIN AS IS!114 // DON'T SVN COMMIT YOUR CHANGED LOGGING! THE ABOVE CODE MUST REMAIN AS IS! 115 115 //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 116 116 } -
source/ariba/utility/system/SystemQueue.cpp
r4721 r5316 226 226 // call the queue and this will 227 227 // call the actual event handler 228 obj->queueMutex.unlock(); 228 229 obj->onNextQueueItem( ev ); 230 obj->queueMutex.lock(); 229 231 230 232 } // !obj->eventsQueue.empty() )
Note:
See TracChangeset
for help on using the changeset viewer.