service: use empty_to_na() where appropriate

This commit is contained in:
Lennart Poettering
2023-09-20 09:39:12 +02:00
parent cb5f21de19
commit 0964cfb0bd

View File

@@ -4404,7 +4404,7 @@ static void service_notify_message(
_cleanup_free_ char *cc = NULL;
cc = strv_join(tags, ", ");
log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc);
log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, empty_to_na(cc));
}
/* Interpret MAINPID= */