summaryrefslogtreecommitdiff
path: root/cmds/incidentd/src/incidentd_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/incidentd/src/incidentd_util.cpp')
-rw-r--r--cmds/incidentd/src/incidentd_util.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmds/incidentd/src/incidentd_util.cpp b/cmds/incidentd/src/incidentd_util.cpp
index af685d8adeb8..dfaf89392f90 100644
--- a/cmds/incidentd/src/incidentd_util.cpp
+++ b/cmds/incidentd/src/incidentd_util.cpp
@@ -68,7 +68,6 @@ pid_t fork_execute_cmd(char* const argv[], Fpipe* input, Fpipe* output) {
// fork used in multithreaded environment, avoid adding unnecessary code in child process
pid_t pid = fork();
if (pid == 0) {
- VLOG("[In child]cmd %s", argv[0]);
if (input != NULL && (TEMP_FAILURE_RETRY(dup2(input->readFd().get(), STDIN_FILENO)) < 0 ||
!input->close())) {
ALOGW("Failed to dup2 stdin.");
@@ -158,4 +157,4 @@ status_t wait_child(pid_t pid) {
} // namespace incidentd
} // namespace os
-} // namespace android \ No newline at end of file
+} // namespace android