aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Macnak <natsu@google.com>2024-04-12 09:10:14 -0700
committerJason Macnak <natsu@google.com>2024-04-15 17:04:53 -0700
commit8aa13543b42b8231bd8f7f495722fdca757f80de (patch)
tree246062b3aa687c37bc5aa08590e33839816e1dbe
parentc3407cd72eab0832c6d2b811ce0479386bf0cc31 (diff)
downloadgfxstream-8aa13543b42b8231bd8f7f495722fdca757f80de.tar.gz
Log nofile limit
... as this is a one time thing and useful for debugging. Bug: b/319697090 Test: presubmit Change-Id: I0c3aeb5300ce3e20e923b1d45f3043df1d35ac3b
-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
}