Prefix all log macros with log::

This commit is contained in:
Moritz Ruth 2024-03-01 00:16:09 +01:00
parent 6c284b6365
commit 1ced4381b8
Signed by: moritzruth
GPG key ID: C9BBAB79405EE56D
10 changed files with 39 additions and 47 deletions

View file

@ -138,7 +138,7 @@ fn state_matches(target: &Target, state: &PaEntityState) -> bool {
TargetPredicatePattern::Regex { regex } => regex.is_match(v),
}
} else {
warn!("Property \"{}\" is not available for targets of type \"{}\"", &p.property, &target.kind);
log::warn!("Property \"{}\" is not available for targets of type \"{}\"", &p.property, &target.kind);
false
}