0x41 commited on
Commit
7ebc7dc
·
1 Parent(s): a2fc3b2
Files changed (1) hide show
  1. tools/query_server_status.py +3 -0
tools/query_server_status.py CHANGED
@@ -32,6 +32,9 @@ class QueryServerTool(Tool):
32
 
33
  # Remove multiple line breaks
34
  markdown_content = re.sub(r"\n{3,}", "\n\n", markdown_content)
 
 
 
35
 
36
  return truncate_content(markdown_content, 10000)
37
 
 
32
 
33
  # Remove multiple line breaks
34
  markdown_content = re.sub(r"\n{3,}", "\n\n", markdown_content)
35
+ print("----> tool log")
36
+ print(markdown_content)
37
+ print("---end tool log ---")
38
 
39
  return truncate_content(markdown_content, 10000)
40