Move goldfish address space logs to verbose type am: 99b556cb11
Original change: https://android-review.googlesource.com/c/device/generic/goldfish-opengl/+/2461995
Change-Id: I054a87f2383fa46581a6cb5f584233977a4dddf5
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/shared/GoldfishAddressSpace/include/goldfish_address_space_android.impl b/shared/GoldfishAddressSpace/include/goldfish_address_space_android.impl
index af46444..f0112e6 100644
--- a/shared/GoldfishAddressSpace/include/goldfish_address_space_android.impl
+++ b/shared/GoldfishAddressSpace/include/goldfish_address_space_android.impl
@@ -180,7 +180,7 @@
bool GoldfishAddressSpaceBlock::allocate(GoldfishAddressSpaceBlockProvider *provider, size_t size)
{
- ALOGD("%s: Ask for block of size 0x%llx\n", __func__,
+ ALOGV("%s: Ask for block of size 0x%llx\n", __func__,
(unsigned long long)size);
destroy();
@@ -203,7 +203,7 @@
m_handle = provider->m_handle;
m_is_shared_mapping = false;
- ALOGD("%s: ioctl allocate returned offset 0x%llx size 0x%llx\n", __func__,
+ ALOGV("%s: ioctl allocate returned offset 0x%llx size 0x%llx\n", __func__,
(unsigned long long)m_offset,
(unsigned long long)m_size);
@@ -213,7 +213,7 @@
bool GoldfishAddressSpaceBlock::claimShared(GoldfishAddressSpaceBlockProvider *provider, uint64_t offset, uint64_t size)
{
- ALOGD("%s: Ask to claim region [0x%llx 0x%llx]\n", __func__,
+ ALOGV("%s: Ask to claim region [0x%llx 0x%llx]\n", __func__,
(unsigned long long)offset,
(unsigned long long)offset + size);
diff --git a/shared/GoldfishAddressSpace/include/goldfish_address_space_host.impl b/shared/GoldfishAddressSpace/include/goldfish_address_space_host.impl
index d1fa4a3..c7d5c43 100644
--- a/shared/GoldfishAddressSpace/include/goldfish_address_space_host.impl
+++ b/shared/GoldfishAddressSpace/include/goldfish_address_space_host.impl
@@ -108,7 +108,7 @@
bool GoldfishAddressSpaceBlock::allocate(GoldfishAddressSpaceBlockProvider *provider, size_t size)
{
- ALOGD("%s: Ask for block of size 0x%llx\n", __func__,
+ ALOGV("%s: Ask for block of size 0x%llx\n", __func__,
(unsigned long long)size);
destroy();