aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2023-02-22 22:32:02 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-02-22 22:32:02 +0000
commite73f12b73e15ef16b172259cda1c4d0b2fb54a57 (patch)
tree82ce57db2245a65f480cf26c8ae2e66c198250b8
parent23d9090ecbbb3a4b99e3c8e2b2851594dd924cf3 (diff)
parentf9358baa20db51d762dfc50a7ce924016d32bfe2 (diff)
downloadgoldfish-opengl-e73f12b73e15ef16b172259cda1c4d0b2fb54a57.tar.gz
[conflict] Merge "Remove verbose HostConnection debug logs" into sc-v2-dev am: eecbc24c32 am: f9358baa20
Original change: https://googleplex-android-review.googlesource.com/c/device/generic/goldfish-opengl/+/21543436 Change-Id: Ieda7ca64fb30e476f6d90caf6d8a8b3e7090be7a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--system/OpenglSystemCommon/HostConnection.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/system/OpenglSystemCommon/HostConnection.cpp b/system/OpenglSystemCommon/HostConnection.cpp
index 9d41be4a..60a47160 100644
--- a/system/OpenglSystemCommon/HostConnection.cpp
+++ b/system/OpenglSystemCommon/HostConnection.cpp
@@ -617,11 +617,6 @@ std::unique_ptr<HostConnection> HostConnection::connect(uint32_t capset_id) {
(unsigned int *)con->m_stream->allocBuffer(sizeof(unsigned int));
*pClientFlags = 0;
con->m_stream->commitBuffer(sizeof(unsigned int));
-
- ALOGD("HostConnection::get() New Host Connection established %p, tid %d\n",
- con.get(), getCurrentThreadId());
-
- // ALOGD("Address space echo latency check done\n");
return con;
}
@@ -667,7 +662,6 @@ void HostConnection::exitUnclean() {
// static
std::unique_ptr<HostConnection> HostConnection::createUnique(uint32_t capset_id) {
- ALOGD("%s: call\n", __func__);
return connect(capset_id);
}