| 816 | } |
| 817 | |
| 818 | std::string_view logLevelToString(LogLevel level) noexcept { |
| 819 | for (auto& it : stringtools_impl::kLogLevels) { |
| 820 | if (it.second == level) { |
| 821 | return it.first; |
| 822 | } |
| 823 | } |
| 824 | constexpr static std::string_view kNone("none"); |
| 825 | return kNone; |
| 826 | } |
| 827 | |
| 828 | StrictMode strictModeFromString(std::string_view strStrictMode) { |
| 829 | auto configModeIt = stringtools_impl::kStrictModes.find(strStrictMode); |
no outgoing calls