1file_to_watch { 2 source: "LOGCAT" 3 destination: "%(device)s_logcat.txt" 4 repeats_output_on_open: true 5 time_stamp { 6 type: DATE 7 regex: "^(\\d+-\\d+ \\d+:\\d+:\\d+.\\d+)" 8 date_format: "%m-%d %H:%M:%S.%f" 9 } 10} 11 12file_to_watch { 13 source: "/dev/kmsg" 14 destination: "%(device)s_kmsg.txt" 15 repeats_output_on_open: true 16 time_stamp { 17 type: MONOTONIC 18 regex: "^\\d+,\\d+,(\\d+)" 19 monotonic_to_seconds_multiplier: 1e-6 20 } 21} 22 23file_to_move { 24 source: "/sdcard/captured_dsp_audio.wav" 25 destination: "%(device)s/%(iteration)06d_captured_dsp_audio.wav" 26} 27 28event { 29 source: "LOGCAT" 30 name: "software_hotword" 31 regex: "MicroDetectionWorker: #onHotwordDetected" 32} 33 34event { 35 source: "LOGCAT" 36 name: "vis_software_hotword" 37 regex: "GsaVoiceInteractionSrv: onHotwordDetected" 38} 39 40event { 41 source: "LOGCAT" 42 name: "dsp_false_accept" 43 regex: "Software didn't trigger but DSP did" 44} 45 46event { 47 source: "LOGCAT" 48 name: "speaker_id_rejected" 49 regex: ": Speaker Verification failed" 50 regex: "Software based speaker id triggered: false" 51} 52 53event { 54 source: "LOGCAT" 55 name: "logcat_iteration" 56 regex: "STRESS_TEST: Iteration \d+ complete" 57} 58 59event { 60 source: "LOGCAT" 61 name: "assistant_started" 62 regex: "START.*com\.google\.android\.googlequicksearchbox.*opa\.OpaActivity.*" 63} 64 65event { 66 source: "LOGCAT" 67 name: "aohd_hotword_detected" 68 regex: "AlwaysOnHotwordDetector: onDetected" 69} 70 71setup_command: "shell setprop log.tag.AlwaysOnHotwordDetector DEBUG" 72setup_command: "shell setprop log.tag.ClockworkHomeGoogle DEBUG" 73setup_command: "shell setprop log.tag.DSPMicrophoneIS DEBUG" 74setup_command: "shell setprop log.tag.DSPMicrophoneInputStrea DEBUG" 75setup_command: "shell setprop log.tag.GsaVoiceInteractionSrv DEBUG" 76setup_command: "shell setprop log.tag.HotwordAudioProvider DEBUG" 77setup_command: "shell setprop log.tag.HotwordConfig DEBUG" 78setup_command: "shell setprop log.tag.HotwordConfigController DEBUG" 79setup_command: "shell setprop log.tag.HotwordDetector DEBUG" 80setup_command: "shell setprop log.tag.HotwordHelper DEBUG" 81setup_command: "shell setprop log.tag.HotwordRecognitionEngn DEBUG" 82setup_command: "shell setprop log.tag.HotwordRecognitionRnr DEBUG" 83setup_command: "shell setprop log.tag.HotwordSettingsCntrlr DEBUG" 84setup_command: "shell setprop log.tag.HotwordState DEBUG" 85setup_command: "shell setprop log.tag.HotwordWorker DEBUG" 86setup_command: "shell setprop log.tag.HotwordWorkerImpl DEBUG" 87setup_command: "shell setprop log.tag.MicroDetectionState DEBUG" 88setup_command: "shell setprop log.tag.MicroRecognitionEngine DEBUG" 89setup_command: "shell setprop log.tag.SWHotwordRecognizer DEBUG" 90setup_command: "shell setprop log.tag.SoundTrigger DEBUG" 91setup_command: "shell setprop log.tag.SoundTriggerHelper DEBUG" 92setup_command: "shell setprop log.tag.SoundTriggerTest DEBUG" 93setup_command: "shell setprop log.tag.VISHotwordAdapter DEBUG" 94setup_command: "shell setprop log.tag.WearVIS DEBUG" 95setup_command: "shell setprop log.tag.MicroDetectionWorker DEBUG" 96setup_command: "shell setprop log.tag.MicroDetectionWrkImpl DEBUG" 97setup_command: "shell setprop log.tag.MicroDetector DEBUG" 98setup_command: "shell setprop log.tag.MicroRecognitionEngine DEBUG" 99setup_command: "shell setprop log.tag.MicroRecognitionRnrImpl DEBUG" 100setup_command: "logcat -P ''" 101 102tag_to_suppress: "GoogleApiClientConnected" 103