Skip to content

Commit cd72873

Browse files
chore: cleanup example logs
1 parent f05f227 commit cd72873

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

example/local_bucketing_client_example.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,11 @@ def main():
1818
For a Django specific sample app, please see https://github.com/DevCycleHQ/python-django-example-app/
1919
"""
2020
logging.basicConfig(level="INFO", format="%(levelname)s: %(message)s")
21-
logger.info("Starting DevCycle client initialization...")
2221

2322
# create an instance of the DevCycle Client object
2423
server_sdk_key = os.environ["DEVCYCLE_SERVER_SDK_KEY"]
25-
logger.info("Creating DevCycle client with key: %s", server_sdk_key)
2624
options = DevCycleLocalOptions()
2725
client = DevCycleLocalClient(server_sdk_key, options)
28-
logger.info("Got DevCycle client")
2926

3027
# Wait for DevCycle to initialize and load the configuration
3128
for i in range(10):
@@ -37,7 +34,6 @@ def main():
3734
logger.error("DevCycle failed to initialize")
3835
exit(1)
3936

40-
logger.info("DevCycle initialized, setting up user")
4137
user = DevCycleUser(user_id="test-1234", email="[email protected]", country="US")
4238

4339
# Use variable_value to access the value of a variable directly

0 commit comments

Comments
 (0)