diff options
Diffstat (limited to 'zenstore-test/zenstore-test.cpp')
| -rw-r--r-- | zenstore-test/zenstore-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore-test/zenstore-test.cpp b/zenstore-test/zenstore-test.cpp index 4a4035ab1..6ebd60e95 100644 --- a/zenstore-test/zenstore-test.cpp +++ b/zenstore-test/zenstore-test.cpp @@ -37,7 +37,7 @@ main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[]) // NewLimit.rlim_cur = 10240; // NewLimit.rlim_max = 10240; NewLimit.rlim_cur = NewLimit.rlim_max; - ZEN_WARN("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_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); Error = setrlimit(RLIMIT_NOFILE, &NewLimit); if (Error != 0) |