chiark / gitweb /
selinux: downgrade database load time message to LOG_DEBUG
authorLennart Poettering <lennart@poettering.net>
Wed, 30 May 2012 23:10:44 +0000 (01:10 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 30 May 2012 23:10:53 +0000 (01:10 +0200)
src/shared/label.c

index 2d7d42a40e7338a7f2ceb83266ab1399a5b5d34a..e13eba65501ef7f0264a96a9643b217c6aca816c 100644 (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