summaryrefslogtreecommitdiff
path: root/bus/bus.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-11-04 14:51:22 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-11-18 19:13:47 +0000
commit1f1649eadaabd61e1b5a38516ac6c3e72e36ef44 (patch)
tree8cc58186e99e5b8f3ed2a52f534497cd26d808cc /bus/bus.c
parent84db0981e087f0010dbd591b97db94d492de8f7a (diff)
downloaddbus-1f1649eadaabd61e1b5a38516ac6c3e72e36ef44.tar.gz
Use DBUS_SYSTEM_LOG_WARNING for failure to alter fd-limits
Reviewed-by: Alban Crequy <alban.crequy@collabora.co.uk> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=85105
Diffstat (limited to 'bus/bus.c')
-rw-r--r--bus/bus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bus/bus.c b/bus/bus.c
index f0d980e5..f8b50b4a 100644
--- a/bus/bus.c
+++ b/bus/bus.c
@@ -671,7 +671,7 @@ raise_file_descriptor_limit (BusContext *context)
if (context->initial_fd_limit == NULL)
{
- bus_context_log (context, DBUS_SYSTEM_LOG_INFO,
+ bus_context_log (context, DBUS_SYSTEM_LOG_WARNING,
"%s: %s", error.name, error.message);
dbus_error_free (&error);
return;
@@ -686,7 +686,7 @@ raise_file_descriptor_limit (BusContext *context)
*/
if (!_dbus_rlimit_raise_fd_limit_if_privileged (65536, &error))
{
- bus_context_log (context, DBUS_SYSTEM_LOG_INFO,
+ bus_context_log (context, DBUS_SYSTEM_LOG_WARNING,
"%s: %s", error.name, error.message);
dbus_error_free (&error);
return;