| 199 | } |
| 200 | |
| 201 | Deque<SpatialLogger::LogText> SpatialLogger::getText(char const* space, bool andClear) { |
| 202 | MutexLocker locker(s_mutex); |
| 203 | if (andClear) |
| 204 | return take(s_logText[space]); |
| 205 | else |
| 206 | return s_logText[space]; |
| 207 | } |
| 208 | |
| 209 | void SpatialLogger::clear() { |
| 210 | decltype(s_lines) lines; |
no test coverage detected