Skip to content

Commit 65331ed

Browse files
committed
Replaced logging with print for testing.
1 parent 93e881c commit 65331ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ async def lookup(string: str,
474474
"fields": "*, score",
475475
"params": inner_params,
476476
}
477-
logging.debug(f"Query: {json.dumps(params, indent=2)}")
477+
print(f"Query: {json.dumps(params, indent=2)}")
478478

479479
query_url = f"http://{SOLR_HOST}:{SOLR_PORT}/solr/name_lookup/select"
480480
async with httpx.AsyncClient(timeout=None) as client:

0 commit comments

Comments
 (0)