| 161 | } |
| 162 | |
| 163 | void SubByteReaderLogging::addLogSubLevel(const std::string name) |
| 164 | { |
| 165 | if (!this->currentTreeLevel) |
| 166 | return; |
| 167 | assert(!name.empty()); |
| 168 | this->itemHierarchy.push(this->currentTreeLevel); |
| 169 | this->currentTreeLevel = this->itemHierarchy.top()->createChildItem(name); |
| 170 | } |
| 171 | |
| 172 | void SubByteReaderLogging::removeLogSubLevel() |
| 173 | { |
no test coverage detected