Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v5.1.1
* (Minor) Move UnleashClient logging to the `UnleashClient` logger.
* (Bugfix) Fix logging for UnleashClient.

## v5.1.0
* (Major) Support new constraint operators.
* (Major) Add cache abstraction. Thanks @walison17!
Expand Down
6 changes: 1 addition & 5 deletions UnleashClient/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
import mmh3 # pylint: disable=import-error
from requests import Response

LOGGER = logging.getLogger(__name__)
LOGGER.setLevel("CRITICAL")

APSCHEDULER_LOGGER = logging.getLogger("apscheduler.scheduler")
APSCHEDULER_LOGGER.setLevel("CRITICAL")
LOGGER = logging.getLogger('UnleashClient')

def normalized_hash(identifier: str,
activation_group: str,
Expand Down