Vous avez juste besoin d'utiliser
java.util.logging.Logger.getLogger(yourFullClassName).setLevel(java.util.logging.Level.All);
et
adb shell setprop log.tag.correspondingTag VERBOSE
Android utilise cette fonction pour obtenir le tag correspondant du nom complet de la classe:
public static String loggerNameToTag(String loggerName)
{
if (loggerName == null) {
return "null";
}
int length = loggerName.length();
if (length <= 23) {
return loggerName;
}
int lastPeriod = loggerName.lastIndexOf(".");
return length - (lastPeriod + 1) <= 23 ? loggerName.substring(lastPeriod + 1) : loggerName.substring(loggerName.length() - 23);
}
ainsi, par exemple , Je souhaite activer la journalisation pour la classe "org.apache.http.impl.client.DefaultRequestDirector" , procédez comme suit:
String clzName = "org.apache.http.impl.client.DefaultRequestDirector";
String newClzName = loggerNameToTag(clzName);
System.out.println("className:" + clzName + " tagName is " + newClzName); //get tagName from class full name,and then it will be used in setprop
Logger jdkLogger = Logger.getLogger(clzName);
jdkLogger.setLevel(Level.ALL);
if (jdkLogger.isLoggable(Level.FINE))
{
jdkLogger.log(Level.FINE, "jdk log msg");
jdkLogger.log(Level.Fine,"tagName is")
}
Et puis dans adb shell
setprop log.tag.DefaultRequestDirector VERBOSE