| 1399 | } |
| 1400 | |
| 1401 | bool LogFormat::operator==(const LogFormat& other) { |
| 1402 | return m_level == other.m_level && m_userFormat == other.m_userFormat && m_format == other.m_format && |
| 1403 | m_dateTimeFormat == other.m_dateTimeFormat && m_flags == other.m_flags; |
| 1404 | } |
| 1405 | |
| 1406 | /// @brief Updates format to be used while logging. |
| 1407 | /// @param userFormat User provided format |
nothing calls this directly
no outgoing calls
no test coverage detected