31 LogHandlerMap::const_iterator it = m_logHandlers.begin();
32 for( ; it != m_logHandlers.end(); ++it )
34 if( (*it).first && ( (*it).second.level <= level ) && ( (*it).second.areas & area ) )
35 (*it).first->handleLog( level, area, message );
41 LogInfo info = { level, areas };
42 m_logHandlers[lh] = info;
47 m_logHandlers.erase( lh );