diff options
| author | 2023-05-11 23:08:26 +0000 | |
|---|---|---|
| committer | 2023-05-12 15:58:48 +0000 | |
| commit | 7a02c7ac86a057666d9a10eaaa95e37e435b600f (patch) | |
| tree | b0c2ce395fce41ba7eabe8ba99c6b2d8d7ec4bc0 | |
| parent | c7515ae352abf6caa0da43eb50fffdbc6feb1561 (diff) | |
Minor typo fix
Fix wrong log info.
Bug: 279544077
Test: N/A
Change-Id: I5ba79d5211194b437ea46e09a1f3a6ee0b35c0fa
| -rw-r--r-- | services/voiceinteraction/java/com/android/server/voiceinteraction/HotwordDetectionConnection.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/voiceinteraction/java/com/android/server/voiceinteraction/HotwordDetectionConnection.java b/services/voiceinteraction/java/com/android/server/voiceinteraction/HotwordDetectionConnection.java index edaaf3fbbccc..248cc26ce656 100644 --- a/services/voiceinteraction/java/com/android/server/voiceinteraction/HotwordDetectionConnection.java +++ b/services/voiceinteraction/java/com/android/server/voiceinteraction/HotwordDetectionConnection.java @@ -962,7 +962,7 @@ final class HotwordDetectionConnection { final DetectorSession session = mDetectorSessions.get( HotwordDetector.DETECTOR_TYPE_VISUAL_QUERY_DETECTOR); if (session == null || session.isDestroyed()) { - Slog.v(TAG, "Not found the look and talk perceiver"); + Slog.v(TAG, "Not found the visual query detector"); return null; } return (VisualQueryDetectorSession) session; |