- Timestamp:
- Mar 2, 2009, 3:07:24 PM (16 years ago)
- Location:
- code/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/ConfigFileManager.cc
r2726 r2731 228 228 // Get default file if necessary and available 229 229 boost::filesystem::path filepath(Core::getConfigPath() / this->filename_); 230 COUT(0) << "config filepath: " << filepath.string() << std::endl;231 230 if (!boost::filesystem::exists(filepath)) 232 231 { 233 232 // Try to get default one from the media folder 234 233 boost::filesystem::path defaultFilepath(Core::getMediaPath() / "defaultConfig" / this->filename_); 235 COUT(0) << "default filepath: " << defaultFilepath.string() << std::endl;236 234 if (boost::filesystem::exists(defaultFilepath)) 237 235 { -
code/trunk/src/orxonox/overlays/stats/Scoreboard.cc
r2662 r2731 61 61 { 62 62 SUPER(Scoreboard, XMLPort, xmlElement, mode); 63 64 COUT(0) << "XMLPort executed." << std::endl;65 63 } 66 64 -
code/trunk/src/util/SignalHandler.cc
r2710 r2731 320 320 time_t now = time(NULL); 321 321 322 std::string timeString = "\n\n\n\n"322 std::string timeString = 323 323 "=======================================================\n" 324 324 "= time: " + std::string(ctime(&now)) + 325 "=======================================================\n";325 "=======================================================\n"; 326 326 bt.insert(0, timeString); 327 327
Note: See TracChangeset
for help on using the changeset viewer.