Update of /cvsroot/opal/opal/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4849/src
Modified Files:
BlueprintManager.cpp SConscript
Log Message:
improved error messages of XML attribute parsing
Index: SConscript
===================================================================
RCS file: /cvsroot/opal/opal/src/SConscript,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** SConscript 14 Mar 2005 05:18:27 -0000 1.15
--- SConscript 14 Mar 2005 22:36:31 -0000 1.16
***************
*** 35,39 ****
RaycastSensorData.h
Rayr.h
- RayShapeData.h
Sensor.h
SensorData.h
--- 35,38 ----
Index: BlueprintManager.cpp
===================================================================
RCS file: /cvsroot/opal/opal/src/BlueprintManager.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** BlueprintManager.cpp 13 Mar 2005 23:07:09 -0000 1.32
--- BlueprintManager.cpp 14 Mar 2005 22:36:31 -0000 1.33
***************
*** 1524,1529 ****
{
OPAL_LOGGER("warning") <<
! "opal::BlueprintManager::getAttribute: Missing attribute "
! << name << ". Value will be set to 0.0." << std::endl;
return 0;
}
--- 1524,1531 ----
{
OPAL_LOGGER("warning") <<
! "opal::BlueprintManager::getAttribute: Element "
! << nodePtr->Value() << " is missing attribute "
! << name << ". Parameter will be set to 0.0."
! << std::endl;
return 0;
}
***************
*** 1549,1554 ****
{
OPAL_LOGGER("warning") <<
! "opal::BlueprintManager::getAttribute: Missing attribute "
! << name << ". Value will be set to NULL." << std::endl;
return "";
}
--- 1551,1558 ----
{
OPAL_LOGGER("warning") <<
! "opal::BlueprintManager::getAttribute: Element "
! << nodePtr->Value() << " is missing attribute "
! << name << ". Parameter will be set to \"\"."
! << std::endl;
return "";
}
|