2

テキスト ファイルに出力されるログ cat がありますが、各部分の意味については何も見つかりません。たとえば、次のものがあります。

W/Trace   (  857): Unexpected value from nativeGetEnabledTags: 0

E/ActivityThread(  565): Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@40d35408 that was originally bound here

E/ActivityThread(  565): android.app.ServiceConnectionLeaked: Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@40d35408 that was originally bound here

E/ActivityThread(  565):    at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:969)

各部分が何を意味するのかわかりませんが、W/ は警告を意味し、E/ はエラーを意味すると思います。しかし、テキストがスラッシュの後にあるかどうかはわかりません。また、括弧内の数字もわかりません。

ご協力いただきありがとうございます。

4

2 に答える 2

7

This can be easily understood by simply comparing the output of logcat with that displayed in DDMS. Here's an example:

Logcat output:

E/QC-DSS-LIB(   74): unrecognized ifi_index 15
D/wpa_supplicant(19367): RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
D/wpa_supplicant(19367): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant(19367): Wireless event: cmd=0x8c02 len=27
D/wpa_supplicant(19367): RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
D/wpa_supplicant(19367): RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added
D/wpa_supplicant(19367): Wireless event: cmd=0x8c02 len=33
D/WifiStateTracker(  123): Reset connections and stopping DHCP

DDMS screenshot: enter image description here

Analysis of the first line from the screenshot:

  • "E" is the log level
  • QC-DSS-LIB is the tag
  • "74" is the Process ID

If you wish to get the timestamp also from logcat, use the -v switch like this:

logcat -v time

which would give an output in this format:

02-16 09:58:21.446 E/QC-DSS-LIB(   74): unrecognized ifi_index 15
于 2013-02-16T04:39:38.410 に答える
0

あなたが見ているのはスタックトレースです。一番上には、アプリが実行されていた最後の既知の場所があります。857行目で、キャストするか、そこで何か他のことをするのを忘れました。

ハッシュの後のテキストは、正しく想定したエラーまたは警告メッセージです。括弧内の数字は行です。

于 2013-02-16T02:34:22.337 に答える