sleep-config: downgrade log level in can_s2h()

As in the previous commit: can_sleep() is more a library-style function,
hence log at debug level only.
This commit is contained in:
Lennart Poettering 2020-06-10 16:52:08 +02:00
parent c02540dc9e
commit c732e87979

View file

@ -588,8 +588,7 @@ static bool can_s2h(const SleepConfig *sleep_config) {
int r; int r;
if (!clock_supported(CLOCK_BOOTTIME_ALARM)) { if (!clock_supported(CLOCK_BOOTTIME_ALARM)) {
log_full(errno == ENOENT ? LOG_DEBUG : LOG_WARNING, log_debug("CLOCK_BOOTTIME_ALARM is not supported.");
"CLOCK_BOOTTIME_ALARM is not supported");
return false; return false;
} }