aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2023-02-17 21:12:51 +0000
committerAurimas Liutikas <aurimas@google.com>2023-02-17 22:51:50 +0000
commitedb1e523f0344d3d9bfe194cf383db0c9a052708 (patch)
tree4877ce615d892cf1b599a5edeb4d50b48b203c6f
parent7efa95e75e52687c8dd7ff8bce666be53d7a14ed (diff)
downloadgoldfish-opengl-edb1e523f0344d3d9bfe194cf383db0c9a052708.tar.gz
Remove verbose HostConnection debug logs
Bug: 269781514 Test: None Change-Id: I11852471eb7f33d57dda55ac80761628998f56f8 Merged-In: I11852471eb7f33d57dda55ac80761628998f56f8
-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 8399f2ad..d0fb78e9 100644
--- a/system/OpenglSystemCommon/HostConnection.cpp
+++ b/system/OpenglSystemCommon/HostConnection.cpp
@@ -553,11 +553,6 @@ std::unique_ptr<HostConnection> HostConnection::connect() {
(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;
}
@@ -599,7 +594,6 @@ void HostConnection::exitUnclean() {
// static
std::unique_ptr<HostConnection> HostConnection::createUnique() {
- ALOGD("%s: call\n", __func__);
return connect();
}