Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6799


Ignore:
Timestamp:
Apr 29, 2010, 12:57:23 PM (14 years ago)
Author:
dafrick
Message:

Adjusted the priority of some outputs which I found to be rather anoying.

Location:
code/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/overlays/GUIOverlay.cc

    r6753 r6799  
    7676            out << reinterpret_cast<long>(this);
    7777            const std::string& str = out.str();
    78             COUT(1) << "GUIManager ptr: " << str << std::endl;
    7978            GUIManager::getInstance().showGUIExtra(this->guiName_, str);
    8079
    81             COUT(3) << "Showing GUI " << this->guiName_ << std::endl;
     80            COUT(4) << "Showing GUI " << this->guiName_ << std::endl;
    8281        }
    8382        else
    8483        {
    8584            GUIManager::hideGUI(this->guiName_);
    86             COUT(3) << "Hiding GUI " << this->guiName_ << std::endl;
     85            COUT(4) << "Hiding GUI " << this->guiName_ << std::endl;
    8786        }
    8887    }
  • code/trunk/src/orxonox/overlays/OrxonoxOverlay.cc

    r6711 r6799  
    327327        {
    328328            OrxonoxOverlay* overlay= it->second;
    329             COUT(1) << "MUP" << std::endl;
    330329            if(overlay->isVisible())
    331330            {
    332331                overlay->hide();
    333                 COUT(1) << "HIDE " << name << std::endl;
     332                COUT(4) << "HIDE " << name << std::endl;
    334333            }
    335334            else
    336335            {
    337336                overlay->show();
    338                 COUT(1) << "SHOW " << name << std::endl;
     337                COUT(4) << "SHOW " << name << std::endl;
    339338            }
    340339        }
Note: See TracChangeset for help on using the changeset viewer.