Skip to content

Commit e6f684a

Browse files
committed
style: update log format for test
Signed-off-by: Samantha Coyle <[email protected]>
1 parent 24d91ed commit e6f684a

File tree

1 file changed

+5
-1
lines changed
  • conversation/python/http/conversation

1 file changed

+5
-1
lines changed

conversation/python/http/conversation/app.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
import requests
1515
import os
1616

17-
logging.basicConfig(level=logging.INFO)
17+
# Configure logging to only show the message without level/logger prefix
18+
logging.basicConfig(
19+
level=logging.INFO,
20+
format='%(message)s'
21+
)
1822

1923
base_url = os.getenv('BASE_URL', 'http://localhost') + ':' + os.getenv(
2024
'DAPR_HTTP_PORT', '3500')

0 commit comments

Comments
 (0)