Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Removed debug output.

File:
1 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            {
Note: See TracChangeset for help on using the changeset viewer.