trusty_keymaster_ipc: Use ALOGV instead of ALOGE for info/debug message

This message was originally ALOGV but got accidentally changed during a
refactoring in 81ebcb1943

Bug:110153632
Test: VtsHalKeymasterV3_0TargetTest
Change-Id: Ibdfa0ab50cb8544c6f23c15049904f1741769647
This commit is contained in:
Roberto Pereira 2018-08-23 15:44:56 -07:00
parent 5d3edb1422
commit 37996b6c67
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ keymaster_error_t trusty_keymaster_send(uint32_t command, const keymaster::Seria
// TODO(swillden): Distinguish permanent from transient errors and set error_ appropriately.
return translate_error(rc);
} else {
ALOGE("Received %d byte response\n", rsp_size);
ALOGV("Received %d byte response\n", rsp_size);
}
const uint8_t* p = recv_buf;