autofill_error_info_set_app_id(eih, app_id);
autofill_error_info_set_error_code(eih, error_code);
- LOGD("error code : %x", error_code);
+ LOGI("error code : %x", error_code);
if (app_id)
free(app_id);
//LCOV_EXCL_START
static void __on_disconnected(rpc_port_proxy_AutofillAppPort_h h, void *user_data)
{
- LOGD("disconnected");
+ LOGI("disconnected");
autofill_h ah = user_data;
if (ah) {
static void __on_rejected(rpc_port_proxy_AutofillAppPort_h h, void *user_data)
{
- LOGD("rejected");
+ LOGI("rejected");
autofill_h ah = user_data;
static void __on_connected(rpc_port_proxy_AutofillManagerPort_h h, void *user_data)
{
autofill_manager_h amh = user_data;
- LOGI("[__RPC_PORT__] connected");
+ LOGI("connected");
if (amh->connection_callback)
amh->connection_callback(amh, AUTOFILL_MANAGER_CONNECTION_STATUS_CONNECTED, amh->connection_userdata);
static void __on_disconnected(rpc_port_proxy_AutofillManagerPort_h h, void *user_data)
{
autofill_manager_h amh = user_data;
- LOGD("disconnected");
+ LOGI("disconnected");
if (amh->connection_callback)
amh->connection_callback(amh, AUTOFILL_MANAGER_CONNECTION_STATUS_DISCONNECTED, amh->connection_userdata);
static void __on_rejected(rpc_port_proxy_AutofillManagerPort_h h, void *user_data)
{
autofill_manager_h amh = user_data;
- LOGD("rejected");
+ LOGI("rejected");
if (amh->connection_callback)
amh->connection_callback(amh, AUTOFILL_MANAGER_CONNECTION_STATUS_REJECTED, amh->connection_userdata);
ret = rpc_port_stub_AutofillSvcPort_register(&callback, NULL);
if (ret != 0)
- LOGI("Failed to register message");
+ LOGW("Failed to register message");
else
LOGI("Succeeded to register message");