Various socktops will fail if we run in a container, due to lack of
privs (for example SO_RECVFORCE as used by the journald sockets). That's
typically not a big issue. Hence downgrade the log level.
Follow-up for:
f7df0eab8d9520f37a2feaecf532d78de6ab6b7d
int _e_ = (e); \
log_unit_full_errno( \
UNIT(s), \
- ERRNO_IS_NOT_SUPPORTED(_e_) ? LOG_DEBUG : LOG_WARNING, \
+ ERRNO_IS_NOT_SUPPORTED(_e_) || \
+ ERRNO_IS_PRIVILEGE(_e_) ? LOG_DEBUG : LOG_WARNING, \
_e_, \
"Failed to set %s socket option, ignoring: %m", \
option); \