Instruction inst = null;
while (true) {
handle = handle.getNext();
if (handle == null) {
logger.warn("No matching invokeInterface found.");
throw new NoMatchingInvokeInterfaceInstruction("No matching invokeInterface found.");
}
inst = handle.getInstruction();
if (inst instanceof InvokeInstruction) {
invokeInterface = (InvokeInstruction) inst;
if (invokeInterface.getClassType(cp).equals(getLogType())) {