Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2731


Ignore:
Timestamp:
Mar 2, 2009, 3:07:24 PM (15 years ago)
Author:
rgrieder
Message:

Removed debug output.

Location:
code/trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/ConfigFileManager.cc

    r2726 r2731  
    228228        // Get default file if necessary and available
    229229        boost::filesystem::path filepath(Core::getConfigPath() / this->filename_);
    230         COUT(0) << "config filepath: " << filepath.string() << std::endl;
    231230        if (!boost::filesystem::exists(filepath))
    232231        {
    233232            // Try to get default one from the media folder
    234233            boost::filesystem::path defaultFilepath(Core::getMediaPath() / "defaultConfig" / this->filename_);
    235             COUT(0) << "default filepath: " << defaultFilepath.string() << std::endl;
    236234            if (boost::filesystem::exists(defaultFilepath))
    237235            {
  • code/trunk/src/orxonox/overlays/stats/Scoreboard.cc

    r2662 r2731  
    6161    {
    6262        SUPER(Scoreboard, XMLPort, xmlElement, mode);
    63 
    64         COUT(0) << "XMLPort executed." << std::endl;
    6563    }
    6664
  • code/trunk/src/util/SignalHandler.cc

    r2710 r2731  
    320320      time_t now = time(NULL);
    321321
    322       std::string timeString = "\n\n\n\n"
     322      std::string timeString =
    323323                         "=======================================================\n"
    324324                         "= time: " + std::string(ctime(&now)) +
    325              "=======================================================\n";
     325                         "=======================================================\n";
    326326      bt.insert(0, timeString);
    327327
Note: See TracChangeset for help on using the changeset viewer.