Doc: Clarify limitations of category filter

As suggested by ogoffart.

Change-Id: I15747869147819799b14dfe0670ff2225f76fc03
Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
bb10
Kai Koehne 2017-04-20 11:48:38 +02:00
parent 9a69a1b969
commit 54c2bfc9db
1 changed files with 2 additions and 2 deletions

View File

@ -411,8 +411,8 @@ QLoggingCategory *QLoggingCategory::defaultCategory()
filter is free to change the respective category configuration with
\l setEnabled().
The filter might be called concurrently from different threads, and
therefore has to be reentrant.
The filter might be called from different threads, but never concurrently.
The filter shall not call any static functions of QLoggingCategory.
Example:
\snippet qloggingcategory/main.cpp 21