Skip to content

Commit

Permalink
Change noisy log level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornet committed Dec 20, 2023
1 parent 28d1449 commit 42625c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ragstack-e2e-tests/e2e_tests/llama_index/test_astra.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def _get_text_embedding(self, text: str) -> List[float]:
@staticmethod
def mock_embedding(text: str):
res = [len(text) / 2, len(text) / 5, len(text) / 10]
logging.info("mock_embedding for " + text + " : " + str(res))
logging.debug("mock_embedding for " + text + " : " + str(res))
return res


Expand Down

0 comments on commit 42625c5

Please sign in to comment.