| 1847 | } |
| 1848 | |
| 1849 | void RegisteredLoggers::unsafeFlushAll(void) { |
| 1850 | ELPP_INTERNAL_INFO(1, "Flushing all log files"); |
| 1851 | for (base::LogStreamsReferenceMap::iterator it = m_logStreamsReference.begin(); |
| 1852 | it != m_logStreamsReference.end(); ++it) { |
| 1853 | if (it->second.get() == nullptr) continue; |
| 1854 | it->second->flush(); |
| 1855 | } |
| 1856 | } |
| 1857 | |
| 1858 | // VRegistry |
| 1859 |