File tree Expand file tree Collapse file tree
src/main/java/org/ajsmith/jadx/plugins/nativelibraries/components Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments