Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 2, 2006, 6:27:39 PM (18 years ago)
Author:
bensch
Message:

orxonox/new_class_id: less debug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/shell/shell_input.cc

    r9865 r9866  
    241241    if (chars > 0)
    242242    {
    243       printf("move cursor %d to the right\n", chars);
     243      PRINTF(5)("move cursor %d to the right\n", chars);
    244244      if (chars >= (int) this->inputLineEnd.size())
    245245        chars = inputLineEnd.size();
     
    250250    {
    251251      chars = -chars;
    252       printf("move cursor %d to the left\n", chars);
     252      PRINTF(5)("move cursor %d to the left\n", chars);
    253253
    254254      if (chars >= (int) this->inputLineBegin.size())
     
    265265  void ShellInput::help(const std::string& className, const std::string& functionName)
    266266  {
    267     printf("%s::%s\n", className.c_str(), functionName.c_str());
    268 
    269267    if (className.empty())
    270268    {
Note: See TracChangeset for help on using the changeset viewer.