Make log warning

This commit is contained in:
Nicolas Mowen 2023-11-03 06:38:33 -06:00 committed by GitHub
parent a22322b39c
commit 473f1f8580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,7 +299,7 @@ class TensorRtDetector(DetectionApi):
if r[5] >= 0: if r[5] >= 0:
valid_detections.append(r) valid_detections.append(r)
else: else:
logger.debug(f"Found TensorRT detection with invalid class id {r}") logger.warning(f"Found TensorRT detection with invalid class id {r}")
raw_detections = valid_detections raw_detections = valid_detections