From: Lennart Poettering Date: Wed, 30 May 2012 23:10:44 +0000 (+0200) Subject: selinux: downgrade database load time message to LOG_DEBUG X-Git-Tag: v184~5 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=107a2db901d93ffaba4a2fe34e6b28643b96574f;p=systemd selinux: downgrade database load time message to LOG_DEBUG --- diff --git a/src/shared/label.c b/src/shared/label.c index 2d7d42a4..e13eba65 100644 --- a/src/shared/label.c +++ b/src/shared/label.c @@ -90,9 +90,9 @@ int label_init(const char *prefix) { l = after_mallinfo.uordblks > before_mallinfo.uordblks ? after_mallinfo.uordblks - before_mallinfo.uordblks : 0; - log_info("Successfully loaded SELinux database in %s, size on heap is %iK.", - format_timespan(timespan, sizeof(timespan), after_timestamp - before_timestamp), - (l+1023)/1024); + log_debug("Successfully loaded SELinux database in %s, size on heap is %iK.", + format_timespan(timespan, sizeof(timespan), after_timestamp - before_timestamp), + (l+1023)/1024); } #endif