We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1437cb commit aafb389Copy full SHA for aafb389
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## v5.1.1
2
+* (Minor) Move UnleashClient logging to the `UnleashClient` logger.
3
+* (Bugfix) Fix logging for UnleashClient.
4
+
5
## v5.1.0
6
* (Major) Support new constraint operators.
7
* (Major) Add cache abstraction. Thanks @walison17!
UnleashClient/utils.py
@@ -3,11 +3,7 @@
import mmh3 # pylint: disable=import-error
from requests import Response
-LOGGER = logging.getLogger(__name__)
-LOGGER.setLevel("CRITICAL")
8
-
9
-APSCHEDULER_LOGGER = logging.getLogger("apscheduler.scheduler")
10
-APSCHEDULER_LOGGER.setLevel("CRITICAL")
+LOGGER = logging.getLogger('UnleashClient')
11
12
def normalized_hash(identifier: str,
13
activation_group: str,
0 commit comments