MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / is_lombok_log_annotation

Function is_lombok_log_annotation

codegraph-kernel/src/java.rs:55–61  ·  view source on GitHub ↗

LOMBOK_LOG_ANNOTATIONS (languages/java.ts).

(name: &str)

Source from the content-addressed store, hash-verified

53
54/// LOMBOK_LOG_ANNOTATIONS (languages/java.ts).
55fn is_lombok_log_annotation(name: &str) -> bool {
56 matches!(
57 name,
58 "Slf4j" | "Log4j" | "Log4j2" | "Log" | "CommonsLog" | "JBossLog" | "Flogger" | "XSlf4j"
59 | "CustomLog"
60 )
61}
62
63fn generic_args_re() -> &'static Regex {
64 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected