Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ private Set<TypeReference> getTypes(final TypeReference T) {

/** Used internally to avoid endless recursion on getTypes(). */
private Set<TypeReference> getTypes(final TypeReference T, final Set<TypeReference> seen) {
logger.debug("getTypes({}, {})", T, seen);
logger.trace("getTypes({}, {})", T, seen);
final Set<TypeReference> ret = new HashSet<>();
ret.add(T);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public int enter(ExecutionOrder section, int PC) {
if ((this.currentSection.compareTo(AndroidEntryPoint.ExecutionOrder.MIDDLE_OF_LOOP) <= 0)
&& (section.compareTo(AndroidEntryPoint.ExecutionOrder.MULTIPLE_TIMES_IN_LOOP) >= 0)) {
PC = enterMULTIPLE_TIMES_IN_LOOP(PC);
logger.info("ENTER: MULTIPLE_TIMES_IN_LOOP");
logger.debug("ENTER: MULTIPLE_TIMES_IN_LOOP");
this.currentSection = AndroidEntryPoint.ExecutionOrder.MULTIPLE_TIMES_IN_LOOP;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ protected int enterAFTER_LOOP(int PC) {
*/
@Override
protected int leaveAT_LAST(int PC) {
logger.info("Leaving Model with PC = {}", PC);
logger.trace("Leaving Model with PC = {}", PC);
return PC;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public Context getCalleeTarget(
} else if (param.getConcreteType().getName().equals(AndroidTypes.IntentName)) {
if (!intents.contains(param)) {
logger.error("Unable to resolve Intent called from {}", caller.getMethod());
logger.error("Search Key: {} hash: {}", param, param.hashCode());
logger.info("Search Key: {} hash: {}", param, param.hashCode());
break;
} else {
intent = intents.find(param);
Expand Down Expand Up @@ -310,7 +310,7 @@ public Intent.IntentType getType() {
final InstanceKey self = actualParameters[0];
final Intent intent = intents.find(self);

logger.warn("Re-Setting the target of Intent {} in {} by {}", intent, site, caller);
logger.info("Re-Setting the target of Intent {} in {} by {}", intent, site, caller);

intent.setExplicit();
intents.unbind(self);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ public void registerIntentForce(Intent intent) {
throw new IllegalArgumentException("The given Intent is null");
}

logger.info("Register Intent {}", intent);
logger.trace("Register Intent {}", intent);
// Looks a bit weired but works as Intents are only matched based on their action and uri
overrideIntents.put(intent, intent);
}
Expand Down Expand Up @@ -610,7 +610,7 @@ public void setOverrideForce(Intent from, Intent to) {
throw new IllegalArgumentException("The Intent given as 'to' is null");
}

logger.info("Override Intent {} to {}", from, to);
logger.trace("Override Intent {} to {}", from, to);
overrideIntents.put(from, to);
}

Expand Down Expand Up @@ -646,7 +646,7 @@ public Intent getIntent(Intent intent) {
}
}
ret = overrideIntents.get(ret); // Once again to get Info set in register
logger.info("Resolved {} to {}", intent, ret);
logger.debug("Resolved {} to {}", intent, ret);
return ret;
} else {
logger.info("No information on {} hash: {}", intent, intent.hashCode());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ public void enter(Attributes saxAttrs) {
}

attributesHistory.get(relevant).push(attr);
logger.debug("Pushing '{}' for {} in {}", attr, relevant, self);
logger.trace("Pushing '{}' for {} in {}", attr, relevant, self);
// if there is no such value in saxAttrs it returns null
}
}
Expand All @@ -459,7 +459,7 @@ public void enter(Attributes saxAttrs) {
public void popAttributes() {
for (Attr relevant : self.getRelevantAttributes()) {
try {
logger.debug(
logger.trace(
"Popping {} of value {} in {}",
relevant,
attributesHistory.get(relevant).peek(),
Expand Down Expand Up @@ -702,10 +702,10 @@ public void leave() {
}
final Intent intent = AndroidSettingFactory.intent(pack, name, null);

logger.info("\tRegister: {}", intent);
logger.trace("\tRegister: {}", intent);
AndroidEntryPointManager.MANAGER.registerIntent(intent);
for (Intent ovr : overrideTargets) {
logger.info("\tOverride: {} --> {}", ovr, intent);
logger.trace("\tOverride: {} --> {}", ovr, intent);
if (ovr.equals(intent)) {
AndroidEntryPointManager.MANAGER.registerIntent(intent);
} else {
Expand Down