We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8f27b commit 1001bb0Copy full SHA for 1001bb0
trapdata/api/api.py
@@ -9,7 +9,6 @@
9
import fastapi
10
import pydantic
11
from fastapi.middleware.gzip import GZipMiddleware
12
-from rich import print
13
14
from ..common.logs import logger # noqa: F401
15
from . import settings
@@ -197,7 +196,7 @@ async def process(data: PipelineRequest) -> PipelineResponse:
197
196
f"Processed {len(source_images)} images in {seconds_elapsed:.2f} seconds"
198
)
199
logger.info(f"Returning {len(all_detections)} detections")
200
- print(all_detections)
+ # print(all_detections)
201
202
# If the number of detections is greater than 100, its suspicious. Log it.
203
if len(all_detections) > 100:
0 commit comments