【发布时间】:2011-03-15 21:04:07
【问题描述】:
为了在我使用的普通 Java 应用程序中启用 apache commons HttpClient 的日志记录:
System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.SimpleLog");
System.setProperty("org.apache.commons.logging.simplelog.showdatetime", "true");
System.setProperty("org.apache.commons.logging.simplelog.log.httpclient.wire", "debug");
System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient", "debug");
但在 Android 上,我在 LogCat 中看不到日志。
我错过了什么吗?
【问题讨论】:
标签: android apache-commons-httpclient