diff options
| -rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index 47a513be81..6bd4dea5ec 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -1270,6 +1270,9 @@ static Dumpstate::RunStatus RunDumpsysTextByPriority(const std::string& title, i dumpsys.writeDumpFooter(STDOUT_FILENO, service, elapsed_seconds); bool dump_complete = (status == OK); dumpsys.stopDumpThread(dump_complete); + } else { + MYLOGE("Failed to start dump thread for service: %s, status: %d", + String8(service).c_str(), status); } } |