| 630 | } |
| 631 | |
| 632 | void Logger::resolveLoggerFormatSpec(void) const { |
| 633 | base::type::EnumType lIndex = LevelHelper::kMinValid; |
| 634 | LevelHelper::forEachLevel(&lIndex, [&](void) -> bool { |
| 635 | base::LogFormat* logFormat = |
| 636 | const_cast<base::LogFormat*>(&m_typedConfigurations->logFormat(LevelHelper::castFromInt(lIndex))); |
| 637 | base::utils::Str::replaceFirstWithEscape(logFormat->m_format, base::consts::kLoggerIdFormatSpecifier, m_id); |
| 638 | return false; |
| 639 | }); |
| 640 | } |
| 641 | |
| 642 | // el::base |
| 643 | namespace base { |
nothing calls this directly
no outgoing calls
no test coverage detected