Changeset 204 in pacpusframework
- Timestamp:
- Oct 29, 2013, 4:10:03 PM (11 years ago)
- Location:
- trunk/src/PacpusLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/ComponentBase.cpp
r202 r204 59 59 os << i->first << "=" << val; 60 60 } 61 os << "\n"; 61 62 } 62 63 return os; … … 265 266 } 266 267 267 LOG_INFO( vm);268 LOG_INFO("Parsed parameter values:\n" << vm); 268 269 } 269 270 -
trunk/src/PacpusLib/ComponentManager.cpp
r203 r204 332 332 component->addOutputs(); 333 333 // print inputs and outputs 334 LOG_INFO("Inputs :\n" << component->inputs().keys());335 LOG_INFO("Outputs :\n" << component->outputs().keys());334 LOG_INFO("Inputs for component '" << componentName << "':\n" << component->inputs().keys()); 335 LOG_INFO("Outputs for component '" << componentName << "':\n" << component->outputs().keys()); 336 336 337 337 if (ComponentBase::CONFIGURATION_DELAYED == component->configurationState()) {
Note:
See TracChangeset
for help on using the changeset viewer.