File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments