| 159 | |
| 160 | |
| 161 | const std::string Log::GetLogGroupStr() const |
| 162 | { |
| 163 | if ((uint8_t)group >= LogGroupCount) |
| 164 | { |
| 165 | return std::string("[group:" |
| 166 | + std::to_string(static_cast<uint8_t>(group)) |
| 167 | + "]"); |
| 168 | } |
| 169 | return LogGroup_str[(uint8_t)group]; |
| 170 | } |
| 171 | |
| 172 | |
| 173 | const std::string Log::GetLogCategoryStr() const |