Skip to content

Commit a14b75e

Browse files
committed
selinux: downgrade log about state to trace
It is printed on every invocation of sd-executor, which is noisy and not useful Follow-up for: bb5232b
1 parent 829732d commit a14b75e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/selinux-util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ bool mac_selinux_use(void) {
7676
#if HAVE_SELINUX
7777
if (_unlikely_(cached_use < 0)) {
7878
cached_use = is_selinux_enabled() > 0;
79-
log_debug("SELinux enabled state cached to: %s", cached_use ? "enabled" : "disabled");
79+
log_trace("SELinux enabled state cached to: %s", enabled_disabled(cached_use));
8080
}
8181

8282
return cached_use;

0 commit comments

Comments
 (0)