repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
debug-logging.cocci
blob
2885350f8523b67e0c71c0c91c830da112e4136c
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
@@
4
(
5
#define DEBUG_LOGGING
6
&
7
- _unlikely_(log_get_max_level() >= LOG_DEBUG)
8
+ DEBUG_LOGGING
9
)
10
@@
11
@@
12
(
13
#define DEBUG_LOGGING
14
&
15
- log_get_max_level() >= LOG_DEBUG
16
+ DEBUG_LOGGING
17
)