| 519 | // Logger |
| 520 | |
| 521 | Logger::Logger(const std::string& id, base::LogStreamsReferenceMap* logStreamsReference) : |
| 522 | m_id(id), |
| 523 | m_typedConfigurations(nullptr), |
| 524 | m_parentApplicationName(std::string()), |
| 525 | m_isConfigured(false), |
| 526 | m_logStreamsReference(logStreamsReference) { |
| 527 | initUnflushedCount(); |
| 528 | } |
| 529 | |
| 530 | Logger::Logger(const std::string& id, const Configurations& configurations, |
| 531 | base::LogStreamsReferenceMap* logStreamsReference) : |
nothing calls this directly
no test coverage detected