mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
Merge d95b6887f6ae7e974fa7ba586457d1246fffdc91 into fdab24bf6acc62d3011f9b5abdf834b4886642b2
This commit is contained in:
commit
0b93c23536
@ -519,6 +519,21 @@ SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
return log_error_errno(SYNTHETIC_ERRNO(EIO), "Failed to read ...");
|
||||
```
|
||||
|
||||
- If the error shall be ignored rather than propagated, insert ", ignoring"
|
||||
at the end:
|
||||
|
||||
```c
|
||||
r = parse(...);
|
||||
if (r < 0)
|
||||
log_debug_errno(r, "Failed to parse ..., ignoring: %m");
|
||||
else
|
||||
parsed = r;
|
||||
```
|
||||
|
||||
- Insert a period at the end of the log message if no errno shall be logged.
|
||||
Bus errors however should not end with a period, because they are passed to
|
||||
the client where the message could be embedded within other texts.
|
||||
|
||||
## Memory Allocation
|
||||
|
||||
- Always check OOM. There is no excuse. In program code, you can use
|
||||
|
Loading…
x
Reference in New Issue
Block a user