Changeset 7167 for code/trunk
- Timestamp:
- Aug 16, 2010, 11:15:31 PM (14 years ago)
- Location:
- code/trunk/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/Core.cc
r7163 r7167 191 191 const unsigned int defaultLevelLogFile = 4; 192 192 #endif 193 setConfigValueGeneric(this, &this->softDebugLevelLogFile_, ConfigFileType::Settings, "OutputHandler", "softDebugLevelLogFile", defaultLevelLogFile)193 SetConfigValueExternal(softDebugLevelLogFile_, "OutputHandler", "softDebugLevelLogFile", defaultLevelLogFile) 194 194 .description("The maximum level of debug output shown in the log file"); 195 195 OutputHandler::getInstance().setSoftDebugLevel(OutputHandler::logFileOutputListenerName_s, this->softDebugLevelLogFile_); -
code/trunk/src/libraries/core/Shell.cc
r6536 r7167 105 105 const unsigned int defaultLevel = 3; 106 106 #endif 107 setConfigValueGeneric(this, &softDebugLevel_, ConfigFileType::Settings, "OutputHandler", "softDebugLevel" + this->consoleName_, defaultLevel)107 SetConfigValueExternal(softDebugLevel_, "OutputHandler", "softDebugLevel" + this->consoleName_, defaultLevel) 108 108 .description("The maximal level of debug output shown in the Shell"); 109 109 this->setSoftDebugLevel(this->softDebugLevel_);
Note: See TracChangeset
for help on using the changeset viewer.