aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/filesystem.cpp
diff options
context:
space:
mode:
authorzousar <[email protected]>2023-08-18 12:07:11 -0600
committerzousar <[email protected]>2023-08-18 12:07:11 -0600
commit4d94217a7bf34480edc3ff1d866e23b6d1b593fd (patch)
tree122462b89f1c05aacaafe2abe2c64e1fdfc87ea6 /src/zencore/filesystem.cpp
parent0.2.17-pre0 (diff)
downloadzen-4d94217a7bf34480edc3ff1d866e23b6d1b593fd.tar.xz
zen-4d94217a7bf34480edc3ff1d866e23b6d1b593fd.zip
Reduce log level for RLIMIT message
Diffstat (limited to 'src/zencore/filesystem.cpp')
-rw-r--r--src/zencore/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/filesystem.cpp b/src/zencore/filesystem.cpp
index 059d1b5f0..b2ae330c1 100644
--- a/src/zencore/filesystem.cpp
+++ b/src/zencore/filesystem.cpp
@@ -1137,7 +1137,7 @@ 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 {}",
+ ZEN_DEBUG("changing RLIMIT_NOFILE from rlim_cur = {}, rlim_max {} to rlim_cur = {}, rlim_max {}",
Limit.rlim_cur,
Limit.rlim_max,
NewLimit.rlim_cur,