Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9729 in orxonox.OLD


Ignore:
Timestamp:
Sep 14, 2006, 10:33:07 PM (18 years ago)
Author:
bensch
Message:

less realy useless debug output

Location:
branches/new_class_id/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/graphics/light.cc

    r9727 r9729  
    264264void LightManager::loadParams(const TiXmlElement* root)
    265265{
    266   printf("Loading Lights\n");
    267266  LoadParamXML(root, "Lights", this, LightManager, loadLights)
    268267  .describe("an XML-Element to load lights from.");
     
    277276void LightManager::loadLights(const TiXmlElement* root)
    278277{
    279   printf("Loading single Lights\n");
    280 
    281278  const TiXmlElement* element = root->FirstChildElement();
    282279
  • branches/new_class_id/src/lib/util/loading/load_param.cc

    r9727 r9729  
    8181    if (!loadString.empty())
    8282    {
    83       PRINTF(0)("Loading value '%s' with Parameters '%s' onto: %s::%s\n",
     83      PRINTF(4)("Loading value '%s' with Parameters '%s' onto: %s::%s\n",
    8484                this->paramName.c_str(), loadString.c_str(), this->object->getClassCName(), this->object->getCName());
    8585      (*this->executor)(this->object, SubString(loadString, ",", SubString::WhiteSpaces, false, '\\'));
  • branches/new_class_id/src/story_entities/story_entity.cc

    r9727 r9729  
    102102void StoryEntity::setLoadFile(const std::string& fileName)
    103103{
    104   printf("===Testing %s:: %s\n", this->getCName(), fileName.c_str());
    105104  if (File(fileName).isFile())
    106105  {
Note: See TracChangeset for help on using the changeset viewer.