logging level changes

This commit is contained in:
joachim-danswer 2025-02-03 14:39:31 -08:00 committed by Evan Lohn
parent 3cd057d7a2
commit 7ac6d3ed50
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ def generate_sub_answer(
response.append(content)
answer_str = merge_message_runs(response, chunk_separator="")[0].content
logger.info(
logger.debug(
f"Average dispatch time: {sum(dispatch_timings) / len(dispatch_timings)}"
)

View File

@ -249,7 +249,7 @@ def generate_initial_answer(
)
streamed_tokens.append(content)
logger.info(
logger.debug(
f"Average dispatch time for initial answer: {sum(dispatch_timings) / len(dispatch_timings)}"
)