Changeset 1313 for code/branches/console/src/core/OutputHandler.cc
- Timestamp:
- May 17, 2008, 3:58:19 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/OutputHandler.cc
r1230 r1313 101 101 } 102 102 103 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_) 104 Shell::getInstance().getOutputBuffer() << sb; 105 103 106 return *this; 104 107 } … … 119 122 this->logfile_.flush(); 120 123 } 124 125 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_) 126 manipulator(Shell::getInstance().getOutputBuffer()); 121 127 122 128 return *this; … … 139 145 } 140 146 147 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_) 148 manipulator(Shell::getInstance().getOutputBuffer()); 149 141 150 return *this; 142 151 } … … 158 167 } 159 168 169 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_) 170 manipulator(Shell::getInstance().getOutputBuffer()); 171 160 172 return *this; 161 173 }
Note: See TracChangeset
for help on using the changeset viewer.