aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-04-16 17:28:16 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-16 17:28:16 +0000
commit1d3b35346d4d68fb79dde039018934116b7b3218 (patch)
treec99c4c6e37cf69a3af352a2e5c7ba416ef4633f8
parent1006a864581cb6b96c408fc278225777dbefe0a8 (diff)
parent8aa13543b42b8231bd8f7f495722fdca757f80de (diff)
downloadgfxstream-1d3b35346d4d68fb79dde039018934116b7b3218.tar.gz
Merge "Log nofile limit" into main
-rw-r--r--host/FrameBuffer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/host/FrameBuffer.cpp b/host/FrameBuffer.cpp
index 411ddc91..1e363365 100644
--- a/host/FrameBuffer.cpp
+++ b/host/FrameBuffer.cpp
@@ -257,7 +257,9 @@ void MaybeIncreaseFileDescriptorSoftLimit() {
return;
}
- GL_LOG("Raised nofile soft limit to %d.", static_cast<int>(requestedSoftLimit));
+ INFO("Raised nofile soft limit to %d.", static_cast<int>(requestedSoftLimit));
+ } else {
+ INFO("Not raising nofile soft limit from %d.", static_cast<int>(softLimit));
}
#endif
}