aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/filesystem.cpp
diff options
context:
space:
mode:
authorzousar <[email protected]>2023-08-18 14:27:37 -0600
committerGitHub <[email protected]>2023-08-18 14:27:37 -0600
commite515c302f58f9189731ef1b6a0ab6a90b1d98e94 (patch)
tree76d89831fdb2920cccecb2c05d0913b48820ce5d /src/zencore/filesystem.cpp
parent0.2.17-pre0 (diff)
parentNoted RLIMIT logging modification in Changelog (diff)
downloadzen-e515c302f58f9189731ef1b6a0ab6a90b1d98e94.tar.xz
zen-e515c302f58f9189731ef1b6a0ab6a90b1d98e94.zip
Merge pull request #364 from EpicGames/zs/mac-linux-rlimit-stdout
Reduce log level for RLIMIT message
Diffstat (limited to 'src/zencore/filesystem.cpp')
-rw-r--r--src/zencore/filesystem.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zencore/filesystem.cpp b/src/zencore/filesystem.cpp
index 059d1b5f0..daf668290 100644
--- a/src/zencore/filesystem.cpp
+++ b/src/zencore/filesystem.cpp
@@ -1137,11 +1137,11 @@ MaximizeOpenFileCount()
{
struct rlimit NewLimit = Limit;
NewLimit.rlim_cur = NewLimit.rlim_max;
- ZEN_INFO("changing RLIMIT_NOFILE from rlim_cur = {}, rlim_max {} to rlim_cur = {}, rlim_max {}",
- Limit.rlim_cur,
- Limit.rlim_max,
- NewLimit.rlim_cur,
- NewLimit.rlim_max);
+ ZEN_DEBUG("changing RLIMIT_NOFILE from rlim_cur = {}, rlim_max {} to rlim_cur = {}, rlim_max {}",
+ Limit.rlim_cur,
+ Limit.rlim_max,
+ NewLimit.rlim_cur,
+ NewLimit.rlim_max);
Error = setrlimit(RLIMIT_NOFILE, &NewLimit);
if (Error != 0)