diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-05-31 01:10:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-05-31 01:10:53 +0200 |
commit | 107a2db901d93ffaba4a2fe34e6b28643b96574f (patch) | |
tree | 823173a36ba94fa401b5d150663ff543fe90426d /src | |
parent | e05137989bdb4ad29d75fd7b86cbfba384ff1ed5 (diff) |
selinux: downgrade database load time message to LOG_DEBUG
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/label.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/label.c b/src/shared/label.c index 2d7d42a40e..e13eba6550 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 |