From a7915d437c3971943f82dfc2370fe7a5df522801 Mon Sep 17 00:00:00 2001 From: Alex Light Date: Mon, 11 Aug 2014 10:07:02 -0700 Subject: [PATCH] Change an accidental ALOGE to an ALOGV Change-Id: If07bcef597dd9e531ce6d92c7780ba6ad5090f9a --- cmds/installd/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c index c25af59e3..9cfb0ff9b 100644 --- a/cmds/installd/commands.c +++ b/cmds/installd/commands.c @@ -644,7 +644,7 @@ static void run_patchoat(int input_fd, int oat_fd, const char* input_file_name, sprintf(instruction_set_arg, "--instruction-set=%s", instruction_set); sprintf(output_oat_fd_arg, "--output-oat-fd=%d", oat_fd); sprintf(input_oat_fd_arg, "--input-oat-fd=%d", input_fd); - ALOGE("Running %s isa=%s in-fd=%d (%s) out-fd=%d (%s)\n", + ALOGV("Running %s isa=%s in-fd=%d (%s) out-fd=%d (%s)\n", PATCHOAT_BIN, instruction_set, input_fd, input_file_name, oat_fd, output_file_name); /* patchoat, patched-image-location, no-lock, isa, input-fd, output-fd */