Revert "Removed mutex locking from get and set of log level #4809"
This reverts commit 3eef49d5c9
.
This commit is contained in:
parent
9b09703c1a
commit
d2c94bfb04
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue