Changeset 1313 for code/branches/console/src/core/OutputHandler.h
- Timestamp:
- May 17, 2008, 3:58:19 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/OutputHandler.h
r1230 r1313 43 43 #include <fstream> 44 44 #include <string> 45 46 #include "Shell.h" 45 47 46 48 namespace orxonox … … 154 156 } 155 157 158 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= this->outputLevel_) 159 Shell::getInstance().getOutputBuffer() << output; 160 156 161 return *this; 157 162 } … … 175 180 } 176 181 182 if (OutputHandler::getSoftDebugLevel(OutputHandler::LD_Shell) >= out.getOutputLevel()) 183 Shell::getInstance().getOutputBuffer() << output; 184 177 185 return out; 178 186 }
Note: See TracChangeset
for help on using the changeset viewer.