Clean up logs
This commit is contained in:
parent
74d1cbb01f
commit
8ef673fe58
2 changed files with 1 additions and 5 deletions
|
@ -373,10 +373,6 @@ class YoloOnnxFaceDetection {
|
|||
|
||||
final relativeDetections = _yoloPostProcessOutputs(outputs, newSize);
|
||||
|
||||
dev.log(
|
||||
'${relativeDetections.length} faces detected, with scores ${relativeDetections.map((e) => e.score).toList()}',
|
||||
);
|
||||
|
||||
stopwatch.stop();
|
||||
_logger.info(
|
||||
'predict() face detection executed in ${stopwatch.elapsedMilliseconds}ms',
|
||||
|
|
|
@ -219,7 +219,7 @@ class FaceMlService {
|
|||
);
|
||||
|
||||
dev.log(
|
||||
"${faceDetectionResult.length} faces detected: completed `detectFacesSync` function, in "
|
||||
"${faceDetectionResult.length} faces detected with scores ${faceDetectionResult.map((e) => e.score).toList()}: completed `detectFacesSync` function, in "
|
||||
"${stopwatch.elapsedMilliseconds} ms");
|
||||
|
||||
// If no faces were detected, return a result with no faces. Otherwise, continue.
|
||||
|
|
Loading…
Add table
Reference in a new issue