Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5300 in orxonox.OLD for trunk/src/lib


Ignore:
Timestamp:
Oct 7, 2005, 1:59:44 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: even less debug-info

Location:
trunk/src/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/coord/null_parent.cc

    r5082 r5300  
    1616*/
    1717
    18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NULL_PARENT
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PARENT_NODE
    1919
    2020#include "null_parent.h"
  • trunk/src/lib/event/event_handler.cc

    r5297 r5300  
    110110          this->listeners[i][eventType] = el;
    111111        else
    112           PRINTF(1)("%s of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
     112          PRINTF(2)("%s of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
    113113    }
    114114  else
     
    118118      }
    119119    else
    120       PRINTF(1)("% of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
     120      PRINTF(2)("% of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
    121121}
    122122
  • trunk/src/lib/graphics/importer/objModel.cc

    r5014 r5300  
    7575      strncpy(this->objPath, fileName, len);
    7676      this->objPath[len] = '\0';
    77       PRINTF(1)("Resolved file %s to Path %s.\n", fileName, this->objPath);
     77      PRINTF(4)("Resolved file %s to Path %s.\n", fileName, this->objPath);
    7878    }
    7979  else
     
    9494  if( (stream = fopen (fileName, "r")) == NULL)
    9595    {
    96       printf("Object File Could not be Opened %s\n", fileName);
     96      PRINTF(2)("Object File Could not be Opened %s\n", fileName);
    9797      return false;
    9898    }
     
    145145      else if (!strncmp(buffer, "s ", 2)) //! @todo smoothing groups have to be implemented
    146146        {
    147           PRINTF(2)("smoothing groups not supportet yet. line: %s\n", buffer);
     147          PRINTF(3)("smoothing groups not supportet yet. line: %s\n", buffer);
    148148        }
    149149    }
     
    153153
    154154/**
    155   *  Function to read in a mtl File.
    156   * @param mtlFile The .mtl file to read
    157 
    158     This Function parses all Lines of an mtl File.
    159     The reason for it not to be in the materials-class is,
    160     that a material does not have to be able to read itself in from a File.
    161 
    162 */
     155 * Function to read in a mtl File.
     156 * @param mtlFile The .mtl file to read
     157 *
     158 * This Function parses all Lines of an mtl File.
     159 * The reason for it not to be in the materials-class is,
     160 * that a material does not have to be able to read itself in from a File.
     161 */
    163162bool OBJModel::readMtlLib (const char* mtlFile)
    164163{
     
    170169    {
    171170      PRINTF(2)("MaterialLibrary could not be opened %s\n", fileName);
    172       delete []fileName;
     171      delete[] fileName;
    173172      return false;
    174173    }
Note: See TracChangeset for help on using the changeset viewer.