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:52:16 +0000
commit104effa72e6de0d2b21d98351a7a1959113ee2a1 (patch)
treed0b9850f9cb4d4a60cf41b8aea6e7958a639696f
parent4ea5e0415344131a5ae84fe930aa906cb41cc8d1 (diff)
downloadgoldfish-opengl-104effa72e6de0d2b21d98351a7a1959113ee2a1.tar.gz
Remove verbose HostConnection debug logs
Bug: 269781514 Test: None Merged-In: I11852471eb7f33d57dda55ac80761628998f56f8 Change-Id: 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 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);
}