Changeset 8806 for code/branches/output/src/libraries/core/XMLPort.h
- Timestamp:
- Jul 31, 2011, 5:15:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/XMLPort.h
r8788 r8806 415 415 if ((!attributeValue.empty()) || ((mode != XMLPort::ExpandObject) && this->loadexecutor_->allDefaultValuesSet())) 416 416 { 417 COUT(5) << this->owner_->getLoaderIndentation() << "Loading parameter " << this->paramname_ << " in " << this->identifier_->getName() << " (objectname " << this->owner_->getName() << ")." << std::endl << this->owner_->getLoaderIndentation();417 orxout(verbose_more, context::xml) << this->owner_->getLoaderIndentation() << "Loading parameter " << this->paramname_ << " in " << this->identifier_->getName() << " (objectname " << this->owner_->getName() << ")." << endl; 418 418 int error; 419 419 this->loadexecutor_->parse(object, attributeValue, &error, ","); … … 430 430 catch (ticpp::Exception& ex) 431 431 { 432 COUT(1) << std::endl;433 COUT(1) << "An error occurred in XMLPort.h while loading attribute '" << this->paramname_ << "' of '" << this->identifier_->getName() << "' (objectname: " << this->owner_->getName() << ") in " << this->owner_->getFilename() << ':' << std::endl;434 COUT(1) << ex.what() << std::endl;432 orxout(internal_error, context::xml) << endl; 433 orxout(internal_error, context::xml) << "An error occurred in XMLPort.h while loading attribute '" << this->paramname_ << "' of '" << this->identifier_->getName() << "' (objectname: " << this->owner_->getName() << ") in " << this->owner_->getFilename() << ':' << endl; 434 orxout(internal_error, context::xml) << ex.what() << endl; 435 435 } 436 436 }
Note: See TracChangeset
for help on using the changeset viewer.