From: Simon McVittie Date: Tue, 4 Nov 2014 14:51:22 +0000 (+0000) Subject: Use DBUS_SYSTEM_LOG_WARNING for failure to alter fd-limits X-Git-Tag: dbus-1.9.4~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f1649eadaabd61e1b5a38516ac6c3e72e36ef44;p=thirdparty%2Fdbus.git Use DBUS_SYSTEM_LOG_WARNING for failure to alter fd-limits Reviewed-by: Alban Crequy Bug: https://bugs.freedesktop.org/show_bug.cgi?id=85105 --- diff --git a/bus/activation.c b/bus/activation.c index ffedf4c51..9610c04bd 100644 --- a/bus/activation.c +++ b/bus/activation.c @@ -1704,7 +1704,7 @@ child_setup (void *user_data) { /* unfortunately we don't actually know the service name here */ bus_context_log (activation->context, - DBUS_SYSTEM_LOG_INFO, + DBUS_SYSTEM_LOG_WARNING, "Failed to reset fd limit before activating " "service: %s: %s", error.name, error.message); diff --git a/bus/bus.c b/bus/bus.c index f0d980e50..f8b50b4af 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;