Revert "Removed mutex locking from get and set of log level #4809"

This reverts commit 3eef49d5c9.
This commit is contained in:
Jerry (Xinyu Hou) 2015-08-06 12:57:57 -07:00
parent 9b09703c1a
commit d2c94bfb04
1 changed files with 2 additions and 0 deletions

View File

@ -260,12 +260,14 @@ Log::setFilter(const char* maxPriority)
void
Log::setFilter(int maxPriority)
{
ArchMutexLock lock(m_mutex);
m_maxPriority = maxPriority;
}
int
Log::getFilter() const
{
ArchMutexLock lock(m_mutex);
return m_maxPriority;
}