Skip to content

Commit 87a6faf

Browse files
downgrade log level to debug
1 parent dbe4ab4 commit 87a6faf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/managed-llm/app/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ def get_llm_response(payload):
5555
}
5656

5757
# Log request details
58-
logging.info(f"Sending POST to {LLM_URL}")
59-
logging.info(f"Request Headers: {request_headers}")
60-
logging.info(f"Request Payload: {payload}")
58+
logging.debug(f"Sending POST to {LLM_URL}")
59+
logging.debug(f"Request Headers: {request_headers}")
60+
logging.debug(f"Request Payload: {payload}")
6161

6262
response = None
6363
try:

0 commit comments

Comments
 (0)