Skip to content

Commit dea32e7

Browse files
committed
Bugfix: changed some logged warnings to debugs
1 parent a9028a7 commit dea32e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/ajsmith/jadx/plugins/nativelibraries/components/NativeMethod.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,17 +141,17 @@ private JavaMethod findJavaMethod() {
141141

142142
JavaPackage pkg = packages.stream().filter(p -> p.getRawFullName().equals(getCls().getPkg().getFullName())).findFirst().orElse(null);
143143
if (pkg == null) {
144-
LOG.warn("Package {} not found", getCls().getPkg().getFullName());
144+
LOG.debug("Package {} not found", getCls().getPkg().getFullName());
145145
return null;
146146
}
147147
JavaClass cls = pkg.getClasses().stream().filter(c -> c.getRawName().equals(getCls().getFullName())).findFirst().orElse(null);
148148
if (cls == null) {
149-
LOG.warn("Class {} not found", getCls().getFullName());
149+
LOG.debug("Class {} not found", getCls().getFullName());
150150
return null;
151151
}
152152
List<JavaMethod> methods = cls.getMethods().stream().filter(m -> m.getFullName().equals(getFullName())).collect(Collectors.toList());
153153
if (methods.isEmpty()) {
154-
LOG.warn("Method {} not found", getFullName());
154+
LOG.debug("Method {} not found", getFullName());
155155
return null;
156156
}
157157

0 commit comments

Comments
 (0)