Changeset 365 in pacpusframework for branches/0.2.x
- Timestamp:
- Dec 15, 2015, 11:43:22 AM (9 years ago)
- Location:
- branches/0.2.x/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.2.x/src/DBITEPlayerLib/DbtPlyEngine.cpp
r288 r365 270 270 void DbtPlyEngine::setState(DbtPlyEngineState * newState) 271 271 { 272 273 LOG_DEBUG(mCurrentState->toString() << " => " << newState->toString()); 272 BOOST_ASSERT(newState); 273 LOG_DEBUG(mCurrentState->toString().toStdString() << " => " << newState->toString().toStdString()); 274 274 mCurrentState = newState; 275 275 -
branches/0.2.x/src/DBITEPlayerLib/DbtPlyFileManager.cpp
r288 r365 286 286 deltaTDbtTab_[(deltaTDbtTabLoop_++)%1000] = deltaT; 287 287 if (deltaT > kMaxPendingTimeFromEngineMicrosecs) { 288 LOG_WARN(getName() << ": data not replayed: elapsed time since engine notification too big:" << deltaT << "us");289 288 LOG_WARN(getName().toStdString() << ": data not replayed: elapsed time since engine notification too big:" << deltaT << "us"); 289 return; 290 290 } 291 291 -
branches/0.2.x/src/PacpusLib/ComponentBase.cpp
r349 r365 563 563 { 564 564 LOG_INFO("Parsing parameters..."); 565 LOG_INFO(mOptionsDescription); 565 std::ostringstream temp_stream; 566 temp_stream << mOptionsDescription; 567 LOG_INFO(temp_stream.str()); 566 568 567 569 po::variables_map vm; -
branches/0.2.x/src/PacpusLib/XmlConfigFile.cpp
r280 r365 190 190 if (!m_document.setContent(&m_file, /*namespaceProcessing=*/true, &errorMsg, &errorLine, &errorColumn)) { 191 191 LOG_ERROR("cannot parse XML file " << m_file.fileName()); 192 LOG_ERROR(errorMsg << " at " << errorLine << ":" << errorColumn << " (line:col)"); 192 LOG_ERROR(errorMsg.toStdString() << " at " << errorLine << ":" << errorColumn << " (line:col)"); 193 193 m_file.close(); 194 194 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.