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 24d91ed commit e6f684aCopy full SHA for e6f684a
conversation/python/http/conversation/app.py
@@ -14,7 +14,11 @@
14
import requests
15
import os
16
17
-logging.basicConfig(level=logging.INFO)
+# Configure logging to only show the message without level/logger prefix
18
+logging.basicConfig(
19
+ level=logging.INFO,
20
+ format='%(message)s'
21
+)
22
23
base_url = os.getenv('BASE_URL', 'http://localhost') + ':' + os.getenv(
24
'DAPR_HTTP_PORT', '3500')
0 commit comments