Skip to content

Commit 9906bcf

Browse files
authored
FFM-9866 Set default log level to WARNING (#83)
1 parent 6315c6f commit 9906bcf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

featureflags/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Enver Bisevac"""
44
__email__ = "enver.bisevac@harness.io"
5-
__version__ = '1.2.3'
5+
__version__ = '1.2.4'

featureflags/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
VARIATION_VALUE_ATTRIBUTE = 'variationValue'
3434
TARGET_ATTRIBUTE = 'target'
3535
SDK_VERSION_ATTRIBUTE = 'SDK_VERSION'
36-
SDK_VERSION = '1.2.3'
36+
SDK_VERSION = '1.2.4'
3737
SDK_TYPE_ATTRIBUTE = 'SDK_TYPE'
3838
SDK_TYPE = 'server'
3939
SDK_LANGUAGE_ATTRIBUTE = 'SDK_LANGUAGE'

featureflags/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
log = logging.getLogger(sys.modules[__name__].__name__)
55
log.addHandler(logging.StreamHandler())
6-
log.setLevel(logging.DEBUG)
6+
log.setLevel(logging.WARNING)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.3
2+
current_version = 1.2.4
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
test_suite="tests",
5858
tests_require=test_requirements,
5959
url="https://github.com/harness/ff-python-server-sdk",
60-
version='1.2.3',
60+
version='1.2.4',
6161
zip_safe=False,
6262
)

0 commit comments

Comments
 (0)