selinux: downgrade database load time message to LOG_DEBUG

This commit is contained in:
Lennart Poettering 2012-05-31 01:10:44 +02:00
parent e05137989b
commit 107a2db901

View file

@ -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